Compare commits
No commits in common. "5811a145fd00d86d84d4041e5a0e1be42c25d389" and "b78cd5ea59bec05b3a0871825aac29e30e3011bd" have entirely different histories.
5811a145fd
...
b78cd5ea59
|
|
@ -35,6 +35,5 @@ public class DeviceOrderAddParam {
|
|||
private Integer sourceType;
|
||||
private Integer isOnline;
|
||||
@Valid
|
||||
@NotNull(message = "订单列表不能为空")
|
||||
private List<DeviceOrderInfoAddParam> orderList;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -33,6 +33,5 @@ public class DeviceOrderInfoAddParam {
|
|||
@NotNull(message = "核身方式不能为空")
|
||||
private Integer identityVerification;
|
||||
@Valid
|
||||
@NotNull(message = "订单列表详情不能为空")
|
||||
private List<DeviceOrderDetailInfoAddParam> orderDetailList;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -35,6 +35,5 @@ public class OrderAddParam {
|
|||
private Integer sourceType;
|
||||
private Integer isOnline;
|
||||
@Valid
|
||||
@NotNull(message = "订单列表不能为空")
|
||||
private List<OrderInfoAddParam> orderList;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -31,6 +31,5 @@ public class OrderInfoAddParam {
|
|||
private String deviceSn;
|
||||
private String deviceNum;
|
||||
@Valid
|
||||
@NotNull(message = "订单列表详情不能为空")
|
||||
List<OrderDetailInfoAddParam> orderDetailList;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -48,7 +48,6 @@ public class ShopOrderAddParam {
|
|||
@NotNull(message = "订单在线离线状态为空")
|
||||
private Integer isOnline;
|
||||
@Valid
|
||||
@NotNull(message = "订单列表不能为空")
|
||||
private List<ShopOrderInfoAddParam> orderList;
|
||||
|
||||
public List<OrderInfo> of(ShopOrderAddParam param) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue