作者 王晓刚
1 个管道 的构建 通过 耗费 2 秒

托管成功短信提示

... ... @@ -54,7 +54,7 @@ class OrderInfoModel extends Model
// $where1['o.order_expire_time'] = ['>',time()];//筛选出托管中状态
// $where1['o.order_about_time'] = ['>',(time()-30*24*60*60)];//筛选出托管中状态
//$where1['o.status'] = ['eq',3];//筛选出托管中状态
$field = "c.*,o.order_expire_time,o.status";
$field = "c.*,o.order_expire_time,o.status,o.order_about_time";
$data = $this
->alias('o_i')
->field($field)
... ...
... ... @@ -30,7 +30,7 @@ class SubjoinInsuranceModel extends Model
//$where['o.status'] = ['eq',3];
$data = $this
->alias('s_i')
->field('s_i.*,c.insurer,o.order_expire_time,o.status')
->field('s_i.*,c.insurer,o.order_expire_time,o.status,o.order_about_time')
->join('cmf_collocation c','c.id = s_i.collocation_id')
->join('cmf_order_info o_i','c.id = o_i.collocation_id')
->join('cmf_order o','o_i.order_id = o.id')
... ...