You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
1.5 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Constants\v3;
  4. use Hyperf\Constants\AbstractConstants;
  5. use Hyperf\Constants\Annotation\Constants;
  6. /**
  7. * @Constants
  8. */
  9. class LogLabel extends AbstractConstants
  10. {
  11. /**
  12. * @Message("ErrorCode异常抛出")
  13. */
  14. const ERROR_CODE_EXCEPTION = 'error_code_exception_log';
  15. /**
  16. * @Message("线上订单")
  17. */
  18. const ORDER_ONLINE_LOG = 'order_online_log';
  19. /**
  20. * @Message("线上订单支付完成")
  21. */
  22. const ORDER_ONLINE_PAID_LOG = 'order_online_paid_log';
  23. /**
  24. * @Message("线上订单支付通知")
  25. */
  26. const ORDER_ONLINE_PAY_NOTIFY_LOG = 'order_online_pay_notify_log';
  27. /**
  28. * @Message("当面付订单")
  29. */
  30. const ORDER_OFFLINE_LOG = 'order_offline_log';
  31. /**
  32. * @Message("当面付订单支付完成")
  33. */
  34. const ORDER_OFFLINE_PAID_LOG = 'order_offline_paid_log';
  35. /**
  36. * @Message("当面付订单支付通知")
  37. */
  38. const ORDER_OFFLINE_PAY_NOTIFY_LOG = 'order_offline_pay_notify_log';
  39. /**
  40. * @Message("订单支付")
  41. */
  42. const ORDER_PAYMENT_LOG = 'order_payment_log';
  43. /**
  44. * @Message("IOT设备绑定")
  45. */
  46. const DEVICE_BIND_LOG = 'device_bind_log';
  47. /**
  48. * @Message("IOT设备Pub消息")
  49. */
  50. const DEVICE_SEND_LOG = 'device_send_log';
  51. /**
  52. * @Message("优惠券返券")
  53. */
  54. const COUPON_REBATE_LOG = 'coupon_rebate_log';
  55. /**
  56. * @Message("分账")
  57. */
  58. const SEPARATE_ACCOUNTS_LOG = 'separate_accounts_log';
  59. }