添加车辆地址和车辆状态字段;

bugfix
main
吴顺杰 1 week ago
parent bf7dca08ea
commit b168fed917

@ -93,8 +93,16 @@ public class CarServiceImpl implements CarService {
ColDTO colDTO2 = new ColDTO();
colDTO2.setValue("Title");
colDTO2.setLabel("任务名称");
ColDTO colDTO3 = new ColDTO();
colDTO3.setValue("addr");
colDTO3.setLabel("车辆地址");
ColDTO colDTO4 = new ColDTO();
colDTO4.setValue("stateCn");
colDTO4.setLabel("车辆状态");
colDTOS.add(colDTO);
colDTOS.add(colDTO2);
colDTOS.add(colDTO3);
colDTOS.add(colDTO4);
contentResponse.setCol(colDTOS);
// 将第一个列表转换为Map以getCarPlate为键
Map<String, CarGPSResponse> map1 = list.stream()

@ -40,7 +40,7 @@
( SELECT * FROM vehicle_info WHERE `state` IN ( '保养中', '损坏', '正常' ) AND `category` IN ( '维护车', '文物车',
'硬币车', '运钞车' )
<if test="list.size > 0 and list != null">
and vi.plate_num IN
and plate_num IN
<foreach item="plateNum" collection="list" open="(" separator="," close=")">
#{plateNum}
</foreach>

Loading…
Cancel
Save