| | |
| | | DATE_FORMAT(a.sys_create_time, '%Y-%m-%d %H:%i:%s') as sysCreateTime, |
| | | a.artificial_status as artificialStatus, |
| | | DATE_FORMAT(a.artificial_create_time, '%Y-%m-%d %H:%i:%s') as artificialCreateTime, |
| | | b.`name` as artificialUserName |
| | | b.`name` as artificialUserName, |
| | | c.status as status |
| | | from t_task_detail_vehicles_channel a |
| | | left join sys_user b on (a.artificial_user_id = b.id) |
| | | left join t_task_detail_vehicles c on (a.task_detail_vehicles_id = c.id) |
| | | <where> |
| | | <if test="null != taskDetailVehiclesIdList and taskDetailVehiclesIdList.size() > 0"> |
| | | and a.task_detail_vehicles_id in |