schedule.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?php
  2. return [
  3. [
  4. 'key' => 'mall_order_close',
  5. 'name' => '未支付订单自动关闭',
  6. 'desc' => '',
  7. 'time' => [
  8. 'type' => 'min',
  9. 'min' => 1
  10. ],
  11. 'class' => 'addon\mall\app\job\order\OrderClose',
  12. 'function' => ''
  13. ],
  14. [
  15. 'key' => 'mall_order_close_allow_refund',
  16. 'name' => '订单完成自动关闭售后',
  17. 'desc' => '',
  18. 'time' => [
  19. 'type' => 'min',
  20. 'min' => 1
  21. ],
  22. 'class' => 'addon\mall\app\job\order\OrderCloseAllowRefund',
  23. 'function' => ''
  24. ],
  25. [
  26. 'key' => 'mall_order_finish',
  27. 'name' => '待收货订单自动完成',
  28. 'desc' => '',
  29. 'time' => [
  30. 'type' => 'min',
  31. 'min' => 1
  32. ],
  33. 'class' => 'addon\mall\app\job\order\OrderFinish',
  34. 'function' => ''
  35. ],
  36. [
  37. 'key' => 'mall_coupon_member_expire',
  38. 'name' => '优惠券到期自动过期',
  39. 'desc' => '',
  40. 'time' => [
  41. 'type' => 'min',
  42. 'min' => 1
  43. ],
  44. 'class' => 'addon\mall\app\job\marketing\CouponMemberExpire',
  45. 'function' => ''
  46. ],
  47. [
  48. 'key' => 'mall_coupon_start',
  49. 'name' => '优惠券限时自动开启',
  50. 'desc' => '',
  51. 'time' => [
  52. 'type' => 'min',
  53. 'min' => 1
  54. ],
  55. 'class' => 'addon\mall\app\job\marketing\CouponStart',
  56. 'function' => ''
  57. ],
  58. [
  59. 'key' => 'mall_coupon_end',
  60. 'name' => '优惠券限时自动结束',
  61. 'desc' => '',
  62. 'time' => [
  63. 'type' => 'min',
  64. 'min' => 1
  65. ],
  66. 'class' => 'addon\mall\app\job\marketing\CouponEnd',
  67. 'function' => ''
  68. ],
  69. [
  70. 'key' => 'mall_active_start',
  71. 'name' => '营销活动自动开启',
  72. 'desc' => '',
  73. 'time' => [
  74. 'type' => 'min',
  75. 'min' => 1
  76. ],
  77. 'class' => 'addon\mall\app\job\marketing\ActiveStart',
  78. 'function' => ''
  79. ],
  80. [
  81. 'key' => 'mall_active_end',
  82. 'name' => '营销活动自动结束',
  83. 'desc' => '',
  84. 'time' => [
  85. 'type' => 'min',
  86. 'min' => 1
  87. ],
  88. 'class' => 'addon\mall\app\job\marketing\ActiveEnd',
  89. 'function' => ''
  90. ],
  91. ];