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.

67 lines
1.3 KiB

5 years ago
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Constants;
  4. use Hyperf\Constants\AbstractConstants;
  5. use Hyperf\Constants\Annotation\Constants;
  6. /**
  7. * @Constants
  8. */
  9. class LogLabel extends AbstractConstants
  10. {
  11. /**
  12. * @Message("Ssdb Log Label")
  13. */
  14. const SSDB_LOG = 'ssdb_log';
  15. const COUPON_LOG = 'coupon_log';
  16. /**
  17. * @Message("Device Speaker Log Label")
  18. */
  19. const DEVICE_LOG = 'device_log';
  20. /**
  21. * @Message("Pay Notice Log Label")
  22. */
  23. const PAY_NOTIFY_WXMINI = 'notify_wxmini';
  24. /**
  25. * @Message("Order Log Label")
  26. */
  27. const ORDER_LOG = 'order_log';
  28. /**
  29. * @Message("Separate Accounts Log Label")
  30. */
  31. const SEPARATE_ACCOUNTS_LOG = 'separate_accounts_log';
  32. /**
  33. * @Message("Online Order Complete Log Label")
  34. */
  35. const ONLINE_COMPLETE_LOG = 'online_complete_log';
  36. /**
  37. * @Message("Online Paid Complete Log Label")
  38. */
  39. const ONLINE_PAID_LOG = 'online_paid_log';
  40. /**
  41. * @Message("Offline Paid Complete Log Label")
  42. */
  43. const OFFLINE_PAID_LOG = 'offline_paid_log';
  44. /**
  45. * @Message("Pay refund Log Label")
  46. */
  47. const WX_NOTIFY_REFUND = 'wx_notify_refund';
  48. /**
  49. * @Message("Pay refund Log Label")
  50. */
  51. const WX_PAY_REFUND = 'wx_pay_refund';
  52. }