This commit is contained in:
shuo.wang
2025-06-11 11:01:23 +08:00
parent a40bcbc5e5
commit 541eac1799
6 changed files with 24 additions and 10 deletions

View File

@@ -82,6 +82,12 @@ public class BuildInformationDO {
@Column(name = "juridical_id_card_no")
private String juridicalIdCardNo;
/**
* 法人姓名
*/
@Column(name = "juridical_name")
private String juridicalName;
/**
* 法人手持身份证正面(图片)
*/

View File

@@ -76,6 +76,9 @@ public class BuildInformationRequest {
@Length(max = 18, message = "法人身份证号长度必须为18位")
@ApiModelProperty("法人身份证号")
private String juridicalIdCardNo;
@ApiModelProperty("法人姓名")
@JsonProperty("juridicalName")
private String juridicalName;
@NotBlank(message = "法人手持身份证正面 不能为空")
@Length(max = 250 , message = "法人手持身份证正面 长度不能超过250")
@@ -193,6 +196,7 @@ public class BuildInformationRequest {
buildInformationDO.setDoorPhoto(this.doorPhoto);
buildInformationDO.setInStorePhoto(this.inStorePhoto);
buildInformationDO.setJuridicalIdCardNo(this.juridicalIdCardNo);
buildInformationDO.setJuridicalName(this.juridicalName);
buildInformationDO.setJuridicalIdCardFront(this.juridicalIdCardFront);
buildInformationDO.setJuridicalIdCardReverse(this.juridicalIdCardReverse);
buildInformationDO.setJuridicalHandheldIdCardFront(this.juridicalHandheldIdCardFront);

View File

@@ -68,6 +68,9 @@ public class BuildInformationResponse {
@ApiModelProperty("法人身份证号")
private String juridicalIdCardNo;
@ApiModelProperty("法人姓名")
private String juridicalName;
@ApiModelProperty("法人手持身份证正面(图片)")
private String juridicalHandheldIdCardFront;