From 5fa6c258b1674331599d98e6ac568a9f0df2bb4c Mon Sep 17 00:00:00 2001 From: "shuo.wang" Date: Thu, 10 Oct 2024 10:29:53 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E5=BB=BA=E5=BA=97=E8=B5=84=E6=96=99fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/cool/store/request/BuildInformationRequest.java | 4 ---- 1 file changed, 4 deletions(-) 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..1c14d6be1 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,10 +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") From dac7330dfd376a2809ba89398bc97bccdfffc1c8 Mon Sep 17 00:00:00 2001 From: "shuo.wang" Date: Thu, 10 Oct 2024 10:32:06 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E5=BB=BA=E5=BA=97=E8=B5=84=E6=96=99fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/cool/store/request/BuildInformationRequest.java | 2 +- .../cool/store/service/impl/BuildInformationServiceImpl.java | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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 1c14d6be1..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,7 +84,6 @@ public class BuildInformationRequest { @ApiModelProperty("结算人身份证反面(图片)") private String settlerIdCardReverse; - @NotBlank(message = "结算人身份证号 不能为空") @Length(max = 64 , message = "结算人身份证号 长度不能超过64") @ApiModelProperty("结算人身份证号") @@ -119,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());