钩子自动更改派单状态
2024-11-24 18:41:30
<?php
if (!defined('BASEPATH')) exit('No direct script access allowed');
require FCPATH.'branch/fqb/C_Model.php';
class Content_model extends C_Model {
/*
* 构造函数
*/
public function __construct() {
parent::__construct();
}
public function overtime(){
//查询超过30分钟的派单记录
//当前时间-派单时间>30分钟===>算超时
$time = time()-3600000;
//查询出超时的数据
$this->db->where('bcstatus', 0)->where('ptime <', $time)->limit(100)->update('imt_1_business_member', array('bcstatus' => -2));
}
} 