fix
This commit is contained in:
@@ -82,6 +82,12 @@ public class BuildInformationDO {
|
||||
@Column(name = "juridical_id_card_no")
|
||||
private String juridicalIdCardNo;
|
||||
|
||||
/**
|
||||
* 法人姓名
|
||||
*/
|
||||
@Column(name = "juridical_name")
|
||||
private String juridicalName;
|
||||
|
||||
/**
|
||||
* 法人手持身份证正面(图片)
|
||||
*/
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -68,6 +68,9 @@ public class BuildInformationResponse {
|
||||
@ApiModelProperty("法人身份证号")
|
||||
private String juridicalIdCardNo;
|
||||
|
||||
@ApiModelProperty("法人姓名")
|
||||
private String juridicalName;
|
||||
|
||||
@ApiModelProperty("法人手持身份证正面(图片)")
|
||||
private String juridicalHandheldIdCardFront;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user