Commit 33cb9c35 by huangjinxin

fix:参数优化

1 parent 35c93ce8
...@@ -13,6 +13,10 @@ public class DispatchOrderListReq { ...@@ -13,6 +13,10 @@ public class DispatchOrderListReq {
private String levelValue; private String levelValue;
@NotNull @NotNull
private String Date; private String Date;
/**
* 0:工单优先级,1:耗时,2:意向时间,3:分站/网点,4:技能,5:一家多单
*/
@NotNull @NotNull
private String groupTagId; private String groupTagId;
private List<String> branchIds; private List<String> branchIds;
......
...@@ -64,12 +64,12 @@ public class DispatchOrderListResp { ...@@ -64,12 +64,12 @@ public class DispatchOrderListResp {
/** /**
* 是否重物搬运(双人上门) 0:否 1:是 默认0 * 是否重物搬运(双人上门) 0:否 1:是 默认0
*/ */
private Integer isMultiple = 0; private Integer isMultiple;
/** /**
* 是否指定某个工程师/是否排除某个工程师 0:否 1:指定 2:排除 默认0 * 是否指定某个工程师/是否排除某个工程师 0:否 1:指定 2:排除 默认0
*/ */
private Integer isAppointEngineer = 0; private Integer isAppointEngineer;
/** /**
* 指定某个工程师/排除某个工程师 codes 多个,分割 * 指定某个工程师/排除某个工程师 codes 多个,分割
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!