Commit 489632cd authored by 王业雄's avatar 王业雄

类型修改

parent 7dc79a33
...@@ -21,5 +21,5 @@ public class ChannelConfigInfoVo { ...@@ -21,5 +21,5 @@ public class ChannelConfigInfoVo {
private String userTag; private String userTag;
private String userLevel; private String userLevel;
private Integer priority; private Integer priority;
private Byte routeWait; private Boolean routeWait;
} }
...@@ -12,7 +12,7 @@ public class ChannelRouteResultVo { ...@@ -12,7 +12,7 @@ public class ChannelRouteResultVo {
private Long id; private Long id;
private Long channelId; private Long channelId;
private Byte publishStatus; private Integer publishStatus;
private Long fundId; private Long fundId;
private Long fundProId; private Long fundProId;
private String fundName; private String fundName;
...@@ -25,5 +25,5 @@ public class ChannelRouteResultVo { ...@@ -25,5 +25,5 @@ public class ChannelRouteResultVo {
private String userLevel; private String userLevel;
private Integer priority; private Integer priority;
private Timestamp updatedAt; private Timestamp updatedAt;
private Byte routeWait; private Boolean routeWait;
} }
...@@ -11,7 +11,7 @@ import javax.validation.constraints.NotNull; ...@@ -11,7 +11,7 @@ import javax.validation.constraints.NotNull;
public class ChannelRouteSaveVo { public class ChannelRouteSaveVo {
@NotNull(message = "路由等待不能为空") @NotNull(message = "路由等待不能为空")
private Byte routeWait; private Boolean routeWait;
@NotNull(message = "渠道号不能为空") @NotNull(message = "渠道号不能为空")
private Long channelId; private Long channelId;
@NotNull(message = "资金编号不能为空") @NotNull(message = "资金编号不能为空")
......
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