| 1234567891011121314151617181920212223242526272829 |
- <?php
- // +----------------------------------------------------------------------
- // | 控制台配置
- // +----------------------------------------------------------------------
- return [
- // 指令定义
- 'commands' => [
- // 定时任务
- 'crontab' => 'app\common\command\Crontab',
- // 退款查询
- 'query_refund' => 'app\common\command\QueryRefund',
- // mq队列任务
- 'query_add_agreement' => 'app\common\command\AddAgreementPdf',
- //工程师每日开启接单的通知
- 'open_obtain_order' => 'app\common\command\OpenObtainOrder',
- //发送保险邮箱
- 'send_bx_mail' => 'app\common\command\SendBxMail',
- //工程师自动派单
- 'automatic_dispatch' => 'app\common\command\AutomaticDispatch',
- //自动取消超时未领的工单
- 'cancel_dispatch' => 'app\common\command\CancelDispatch',
- //工程师每周更新一次综合评分和服务时长
- 'update_worker_score' => 'app\common\command\UpdateWorkerScore',
- //拼团订单结束
- 'group_order' => 'app\common\command\GroupOrder',
- // 导出表格
- 'excel_export' => 'app\common\command\ExcelExport',
- ],
- ];
|