Compare commits

..

No commits in common. "144559884a33b7068d69fadec27ce8c11d298b36" and "8109fd42916c5e30caf52c554ea836221143e2bd" have entirely different histories.

2 changed files with 0 additions and 3 deletions

View File

@ -284,7 +284,6 @@ public class OrderInfo extends BaseEntity
orderInfo.setDeviceOrderId(StringUtils.defaultString(orderInfoAddParam.getDeviceOrderId(), StringUtils.EMPTY));
orderInfo.setDeviceSn(StringUtils.defaultString(orderInfoAddParam.getDeviceSn(), StringUtils.EMPTY));
orderInfo.setDeviceNum(StringUtils.defaultString(orderInfoAddParam.getDeviceNum(), StringUtils.EMPTY));
orderInfo.setIdentityVerification(orderInfoAddParam.getIdentityVerification());
orderInfo.setUserId(param.getUserId());
orderInfo.setPayableAmount(param.getPayableAmount());
orderInfo.setRealAmount(param.getRealAmount());

View File

@ -30,8 +30,6 @@ public class DeviceOrderInfoAddParam {
private String deviceSn;
@NotNull(message = "设备编号不能为空")
private String deviceNum;
@NotNull(message = "核身方式不能为空")
private Integer identityVerification;
@Valid
private List<DeviceOrderDetailInfoAddParam> orderDetailList;
}