Commit bb6a2582 by huangjinxin

fix:工单详情返回多人上门等信息

1 parent beb4ea05
......@@ -20,6 +20,22 @@ public class OrderServiceDetailResp {
private OrderDetail reschedulingParams;
private List<KV> items;
/**
* 是否重物搬运(双人上门) 0:否 1:是 默认0
*/
private Integer isMultiple;
/**
* 是否指定某个工程师/是否排除某个工程师 0:否 1:指定 2:排除 默认0
*/
private Integer isAppointEngineer;
/**
* 指定某个工程师/排除某个工程师 codes 多个,分割
*/
private String appointEngineerCodes;
@Data
@JsonInclude(JsonInclude.Include.NON_NULL)
public static class OrderDetail{
......
......@@ -68,6 +68,10 @@ public class OrderServiceDetailImpl implements OrderServiceDetail {
res.setReschedulingParams(detail);
res.setItems(items);
res.setIsMultiple(order.getIsMultiple());
res.setIsAppointEngineer(order.getIsAppointEngineer());
res.setAppointEngineerCodes(order.getAppointEngineerCodes());
return Result.success(res);
}
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!