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.

50 lines
935 B

6 years ago
6 years ago
6 years ago
6 years ago
6 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_OFFLINE_LOG = 'order_onffline_log';
  23. /**
  24. * @Message("订单支付")
  25. */
  26. const ORDER_PAYMENT_LOG = 'order_payment_log';
  27. /**
  28. * @Message("IOT设备绑定")
  29. */
  30. const DEVICE_BIND_LOG = 'device_bind_log';
  31. /**
  32. * @Message("IOT设备Pub消息")
  33. */
  34. const DEVICE_SEND_LOG = 'device_send_log';
  35. /**
  36. * @Message("优惠券返券")
  37. */
  38. const COUPON_REBATE_LOG = 'coupon_rebate_log';
  39. }