Files
zyt/server/config/console.php
T
2026-03-27 18:06:12 +08:00

22 lines
947 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
// +----------------------------------------------------------------------
// | 控制台配置
// +----------------------------------------------------------------------
return [
// 指令定义
'commands' => [
// 定时任务
'crontab' => 'app\common\command\Crontab',
// 退款查询
'query_refund' => 'app\common\command\QueryRefund',
// 同步企业微信对外收款
'sync_wechat_work_bills' => 'app\common\command\SyncWechatWorkBills',
// 挂号单状态自动更新(过号->4,超8小时->2
'update_appointment_status' => 'app\common\command\UpdateAppointmentStatus',
// 诊单腾讯云 IM 聊天记录入库归档
'sync_im_chat_archive' => 'app\common\command\SyncImChatArchive',
// 药材库拼音首字母回填(name_pinyin_abbr
'sync_medicine_pinyin_abbr' => 'app\common\command\SyncMedicinePinyinAbbr',
],
];