建店资料fix

This commit is contained in:
shuo.wang
2024-10-10 10:32:06 +08:00
parent 5fa6c258b1
commit dac7330dfd
2 changed files with 2 additions and 1 deletions

View File

@@ -84,7 +84,6 @@ public class BuildInformationRequest {
@ApiModelProperty("结算人身份证反面(图片)") @ApiModelProperty("结算人身份证反面(图片)")
private String settlerIdCardReverse; private String settlerIdCardReverse;
@NotBlank(message = "结算人身份证号 不能为空") @NotBlank(message = "结算人身份证号 不能为空")
@Length(max = 64 , message = "结算人身份证号 长度不能超过64") @Length(max = 64 , message = "结算人身份证号 长度不能超过64")
@ApiModelProperty("结算人身份证号") @ApiModelProperty("结算人身份证号")
@@ -119,6 +118,7 @@ public class BuildInformationRequest {
buildInformationDO.setBusinessMobile(this.businessMobile); buildInformationDO.setBusinessMobile(this.businessMobile);
buildInformationDO.setDoorPhoto(this.doorPhoto); buildInformationDO.setDoorPhoto(this.doorPhoto);
buildInformationDO.setInStorePhoto(this.inStorePhoto); buildInformationDO.setInStorePhoto(this.inStorePhoto);
buildInformationDO.setJuridicalIdCardNo(this.juridicalIdCardNo);
buildInformationDO.setJuridicalIdCardFront(this.juridicalIdCardFront); buildInformationDO.setJuridicalIdCardFront(this.juridicalIdCardFront);
buildInformationDO.setJuridicalIdCardReverse(this.juridicalIdCardReverse); buildInformationDO.setJuridicalIdCardReverse(this.juridicalIdCardReverse);
buildInformationDO.setJuridicalHandheldIdCardFront(this.juridicalHandheldIdCardFront); buildInformationDO.setJuridicalHandheldIdCardFront(this.juridicalHandheldIdCardFront);

View File

@@ -67,6 +67,7 @@ public class BuildInformationServiceImpl implements BuildInformationService{
response.setDoorPhoto(informationDO.getDoorPhoto()); response.setDoorPhoto(informationDO.getDoorPhoto());
response.setInStorePhoto(informationDO.getInStorePhoto()); response.setInStorePhoto(informationDO.getInStorePhoto());
response.setJuridicalIdCardFront(informationDO.getJuridicalIdCardFront()); response.setJuridicalIdCardFront(informationDO.getJuridicalIdCardFront());
response.setJuridicalIdCardNo(informationDO.getJuridicalIdCardNo());
response.setJuridicalHandheldIdCardReverse(informationDO.getJuridicalHandheldIdCardReverse()); response.setJuridicalHandheldIdCardReverse(informationDO.getJuridicalHandheldIdCardReverse());
response.setJuridicalHandheldIdCardFront(informationDO.getJuridicalHandheldIdCardFront()); response.setJuridicalHandheldIdCardFront(informationDO.getJuridicalHandheldIdCardFront());
response.setJuridicalHandheldIdCardReverse(informationDO.getJuridicalHandheldIdCardReverse()); response.setJuridicalHandheldIdCardReverse(informationDO.getJuridicalHandheldIdCardReverse());