console.php 1.4 KB

1234567891011121314151617181920212223242526
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 控制台配置
  4. // +----------------------------------------------------------------------
  5. use app\common\command\WechatMiniExpressSendSync;
  6. return [
  7. // 指令定义
  8. 'commands' => [
  9. 'crontab' => 'app\common\command\Crontab',
  10. 'order_close' => 'app\common\command\OrderClose',
  11. 'order_finish' => 'app\common\command\OrderFinish',
  12. 'distribution_order' => 'app\common\command\DistributionOrder',
  13. 'user_distribution' => 'app\common\command\UserDistribution', //更新会员分销信息
  14. 'bargain_close' => 'app\common\command\BargainClose', //更新砍价记录状态
  15. 'team_end' => 'app\common\command\TeamEnd', //拼团超时关闭
  16. 'password' => 'app\common\command\Password', //管理员密码
  17. 'award_integral' => 'app\common\command\AwardIntegral', //结算消费赠送积分
  18. 'wechat_merchant_transfer' => 'app\common\command\WechatMerchantTransfer', //商家转账到零钱查询
  19. 'wechat_live_room' => 'app\common\command\WechatLiveRoom', //更新直播间状态
  20. 'wechat_live_goods' => 'app\common\command\WechatLiveGoods', //更新直播商品状态
  21. // 微信小程序 发货信息同步
  22. 'wechat_mini_express_send_sync' => WechatMiniExpressSendSync::class,
  23. ],
  24. ];