diff --git a/coolstore-partner-model/src/main/java/com/cool/store/request/BuildInformationRequest.java b/coolstore-partner-model/src/main/java/com/cool/store/request/BuildInformationRequest.java index d6d5c36d4..5c24ec6f7 100644 --- a/coolstore-partner-model/src/main/java/com/cool/store/request/BuildInformationRequest.java +++ b/coolstore-partner-model/src/main/java/com/cool/store/request/BuildInformationRequest.java @@ -84,11 +84,6 @@ public class BuildInformationRequest { @ApiModelProperty("结算人身份证反面(图片)") private String settlerIdCardReverse; - @NotBlank(message = "结算人姓名 不能为空") - @Length(max = 120 , message = "结算人姓名 长度不能超过128") - @ApiModelProperty("结算人姓名") - private String settlerName; - @NotBlank(message = "结算人身份证号 不能为空") @Length(max = 64 , message = "结算人身份证号 长度不能超过64") @ApiModelProperty("结算人身份证号") @@ -123,6 +118,7 @@ public class BuildInformationRequest { buildInformationDO.setBusinessMobile(this.businessMobile); buildInformationDO.setDoorPhoto(this.doorPhoto); buildInformationDO.setInStorePhoto(this.inStorePhoto); + buildInformationDO.setJuridicalIdCardNo(this.juridicalIdCardNo); buildInformationDO.setJuridicalIdCardFront(this.juridicalIdCardFront); buildInformationDO.setJuridicalIdCardReverse(this.juridicalIdCardReverse); buildInformationDO.setJuridicalHandheldIdCardFront(this.juridicalHandheldIdCardFront); diff --git a/coolstore-partner-service/src/main/java/com/cool/store/service/impl/BuildInformationServiceImpl.java b/coolstore-partner-service/src/main/java/com/cool/store/service/impl/BuildInformationServiceImpl.java index 081cb83a0..6d67dba14 100644 --- a/coolstore-partner-service/src/main/java/com/cool/store/service/impl/BuildInformationServiceImpl.java +++ b/coolstore-partner-service/src/main/java/com/cool/store/service/impl/BuildInformationServiceImpl.java @@ -67,6 +67,7 @@ public class BuildInformationServiceImpl implements BuildInformationService{ response.setDoorPhoto(informationDO.getDoorPhoto()); response.setInStorePhoto(informationDO.getInStorePhoto()); response.setJuridicalIdCardFront(informationDO.getJuridicalIdCardFront()); + response.setJuridicalIdCardNo(informationDO.getJuridicalIdCardNo()); response.setJuridicalHandheldIdCardReverse(informationDO.getJuridicalHandheldIdCardReverse()); response.setJuridicalHandheldIdCardFront(informationDO.getJuridicalHandheldIdCardFront()); response.setJuridicalHandheldIdCardReverse(informationDO.getJuridicalHandheldIdCardReverse());