25 lines
442 B
PHP
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){
|
|
|
|
}
|
|
}
|
|
}
|