Commit 72444497 authored by hanbing's avatar hanbing

[update] 快速特勤,特勤列表返回车牌号

parent cd02b82d
...@@ -275,6 +275,7 @@ public class SpecialServiceServiceImpl implements SpecialServiceService { ...@@ -275,6 +275,7 @@ public class SpecialServiceServiceImpl implements SpecialServiceService {
listSpecialServicesVO.setName(specialServicePO.getName()); listSpecialServicesVO.setName(specialServicePO.getName());
listSpecialServicesVO.setStatus(specialServicePO.getStatus()); listSpecialServicesVO.setStatus(specialServicePO.getStatus());
listSpecialServicesVO.setGmtModified(specialServicePO.getGmtModified()); listSpecialServicesVO.setGmtModified(specialServicePO.getGmtModified());
listSpecialServicesVO.setPlateNum(specialServicePO.getPlateNum());
res.add(listSpecialServicesVO); res.add(listSpecialServicesVO);
} }
......
...@@ -23,4 +23,6 @@ public class ListSpecialServicesVO { ...@@ -23,4 +23,6 @@ public class ListSpecialServicesVO {
@ApiModelProperty(value = "执行时间") @ApiModelProperty(value = "执行时间")
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
Date gmtModified; Date gmtModified;
@ApiModelProperty(value = "关联车辆")
String plateNum;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment