fix
This commit is contained in:
@@ -196,4 +196,10 @@ public class BuildInformationDO {
|
||||
//火码,点餐小程序店铺名称',
|
||||
@Column(name = "c_shop_name")
|
||||
private String cShopName;
|
||||
|
||||
@Column(name = "settler_is_same_partner")
|
||||
private Boolean settlerIsSamePartner;
|
||||
|
||||
@Column(name = "juridical_is_same_partner")
|
||||
private Boolean juridicalIsSamePartner;
|
||||
}
|
||||
@@ -58,6 +58,9 @@ public class BuildInformationRequest {
|
||||
@ApiModelProperty("店内照(图片)")
|
||||
private String inStorePhoto;
|
||||
|
||||
@ApiModelProperty("法人身份证信息是否和加盟商一致,false否,true是")
|
||||
private Boolean juridicalIsSamePartner;
|
||||
|
||||
@NotBlank(message = "法人身份证正面 不能为空")
|
||||
@Length(max = 250 , message = "法人身份证正面长度不能超过250")
|
||||
@ApiModelProperty("法人身份证正面(图片)")
|
||||
@@ -83,6 +86,9 @@ public class BuildInformationRequest {
|
||||
@ApiModelProperty("法人手持身份证反面(图片)")
|
||||
private String juridicalHandheldIdCardReverse;
|
||||
|
||||
@ApiModelProperty("结算人身份证信息是否和加盟商一致,false否,true是")
|
||||
private Boolean settlerIsSamePartner;
|
||||
|
||||
@ApiModelProperty("结算人姓名")
|
||||
@NotBlank(message = "结算人姓名 不能为空")
|
||||
@JsonProperty("settlerName")
|
||||
@@ -204,6 +210,8 @@ public class BuildInformationRequest {
|
||||
buildInformationDO.setRelationshipProve(this.relationshipProve);
|
||||
buildInformationDO.setAccountOpeningPermit(this.accountOpeningPermit);
|
||||
buildInformationDO.setCShopName(this.miniProgramsShopName);
|
||||
buildInformationDO.setSetterIsSamePartner(this.settlerIsSamePartner);
|
||||
buildInformationDO.setJuridicalIsSamePartner(this.juridicalIsSamePartner);
|
||||
return buildInformationDO;
|
||||
}
|
||||
|
||||
|
||||
@@ -55,7 +55,8 @@ public class BuildInformationResponse {
|
||||
|
||||
@ApiModelProperty("店内照(图片)")
|
||||
private String inStorePhoto;
|
||||
|
||||
@ApiModelProperty("法人身份证信息是否和加盟商一致,false否,true是")
|
||||
private Boolean juridicalIsSamePartner;
|
||||
@ApiModelProperty("法人身份证正面(图片)")
|
||||
private String juridicalIdCardFront;
|
||||
|
||||
@@ -74,6 +75,9 @@ public class BuildInformationResponse {
|
||||
@ApiModelProperty("结算人姓名")
|
||||
private String settlerName;
|
||||
|
||||
@ApiModelProperty("结算人身份证信息是否和加盟商一致,false否,true是")
|
||||
private Boolean settlerIsSamePartner;
|
||||
|
||||
@ApiModelProperty("结算人身份证正面(图片)")
|
||||
private String settlerIdCardFront;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user