allocatr/application/admin/behavior/SendOverTimeSms.php
2025-03-31 15:15:41 +08:00

25 lines
442 B
PHP

<?php
namespace app\admin\behavior;
use app\admin\model\OrderDispatch;
use think\Exception;
use think\Lang;
class SendOverTimeSms
{
//发短信通知
public function run(&$response)
{
//todo...
try {
$dispatch = $response['dispatch'];
if($dispatch->status == OrderDispatch::STATUS_OVERTIME){ //发送短信
}
}catch (Exception $exception){
}
}
}