建店资料收集fix

This commit is contained in:
shuo.wang
2024-10-09 22:19:13 +08:00
parent c539a69e7e
commit 8d456ea0c2
4 changed files with 18 additions and 0 deletions

View File

@@ -100,6 +100,12 @@ public class BuildInformationDO {
@Column(name = "settler_id_card_reverse")
private String settlerIdCardReverse;
/**
* 结算人姓名
*/
@Column(name = "settler_name")
private String settlerName;
/**
* 结算人身份证号
*/

View File

@@ -79,6 +79,11 @@ public class BuildInformationRequest {
@ApiModelProperty("结算人身份证反面(图片)")
private String settlerIdCardReverse;
@NotBlank
@Length(max = 120 , message = "结算人姓名 长度不能超过128")
@ApiModelProperty("结算人姓名")
private String settlerName;
@NotBlank
@Length(max = 64 , message = "结算人身份证号 长度不能超过64")
@ApiModelProperty("结算人身份证号")
@@ -120,6 +125,8 @@ public class BuildInformationRequest {
buildInformationDO.setSettlerIdCardFront(this.settlerIdCardFront);
buildInformationDO.setSettlerIdCardReverse(this.settlerIdCardReverse);
buildInformationDO.setSettlerIdCardNo(this.settlerIdCardNo);
buildInformationDO.setSettlerBankPhotoUrl(this.settlerBankPhotoUrl);
buildInformationDO.setSettlerName(this.settlerName);
buildInformationDO.setSettlerBankNumber(this.settlerBankNumber);
buildInformationDO.setSettlerBankMobile(this.settlerBankMobile);
buildInformationDO.setSettlerBankName(this.settlerBankName);

View File

@@ -74,6 +74,9 @@ public class BuildInformationResponse {
@ApiModelProperty("结算人身份证反面(图片)")
private String settlerIdCardReverse;
@ApiModelProperty("结算人姓名")
private String settlerName;
@ApiModelProperty("结算人身份证号")
private String settlerIdCardNo;