This commit is contained in:
weiz 2023-11-29 17:27:35 +08:00
parent 436ebb9a31
commit ea4a0b9247
1 changed files with 3 additions and 0 deletions

View File

@ -100,6 +100,9 @@
return $this->fail('缺少必要参数');
}
$data = Db::query("SELECT * FROM zzsy_land_plant_action WHERE id IN (SELECT max( id ) FROM zzsy_land_plant_action WHERE plant_id = {$params['plant_id']} GROUP BY type)");
foreach($data as $k=>$v){
$data[$k]['detail'] = json_decode($v['detail'],true);
}
return $this->success('请求成功',$data);
}