This commit is contained in:
shuo.wang
2024-10-13 17:33:01 +08:00
parent 0b714a79d7
commit e95a6c1a57
4 changed files with 40 additions and 15 deletions

View File

@@ -80,12 +80,21 @@ public class PlatformBuildDO {
*/
@Column(name = "settler_bank_name")
private String settlerBankName;
/**
* 平台账号(快手)
* 快手平台账号,加盟商提交
*/
@Column(name = "ks_account")
private String ksAccount;
/**
* 平台账号
*/
@Column(name = "account")
private String account;
/**
* 平台密码
*/
@Column(name = "password")
private String password;
/**
* 门店定位截图(快手&抖音)

View File

@@ -26,17 +26,17 @@ public class PlatformBuildRequest {
private Integer type;
@NotBlank
@Length(max = 250 , message = "结算人身份证正面 长度不能超过250")
@Length(max = 250, message = "结算人身份证正面 长度不能超过250")
@ApiModelProperty("结算人身份证正面(图片)")
private String settlerIdCardFront;
@NotBlank
@Length(max = 250 , message = "结算人身份证反面 长度不能超过250")
@Length(max = 250, message = "结算人身份证反面 长度不能超过250")
@ApiModelProperty("结算人身份证反面(图片)")
private String settlerIdCardReverse;
@NotBlank
@Length(max = 64 , message = "结算人身份证号 长度不能超过64")
@Length(max = 64, message = "结算人身份证号 长度不能超过64")
@ApiModelProperty("结算人身份证号")
private String settlerIdCardNo;
@@ -46,35 +46,42 @@ public class PlatformBuildRequest {
private String settlerBankPhotoUrl;
@NotBlank
@Length(max = 64 , message = "结算人银行卡号 长度不能超过64")
@Length(max = 64, message = "结算人银行卡号 长度不能超过64")
@ApiModelProperty("结算人银行卡号")
private String settlerBankNumber;
@NotBlank
@Length(min = 11,max = 11 , message = "结算人银行卡预留手机号 长度必须为11")
@Length(min = 11, max = 11, message = "结算人银行卡预留手机号 长度必须为11")
@ApiModelProperty("结算人银行卡预留手机号")
private String settlerBankMobile;
@NotBlank
@Length(max =100, message = "结算开户银行支行 长度不能超过100")
@Length(max = 100, message = "结算开户银行支行 长度不能超过100")
@ApiModelProperty("结算开户银行支行")
private String settlerBankName;
@Length(max =1020, message = "门店定位截图 长度不能超过1020")
@Length(max = 1020, message = "门店定位截图 长度不能超过1020")
@ApiModelProperty("门店定位截图(快手&抖音)")
private String storePositioningUrl;
@Length(max =1020, message = "授权书 长度不能超过1020")
@Length(max = 1020, message = "授权书 长度不能超过1020")
@ApiModelProperty("授权书(抖音&快手非法人结算需要)")
private String authorizationUrl;
@Length(max =250, message = "平台账号 长度不能超过250")
@ApiModelProperty("平台账号(快手,需要)")
@ApiModelProperty("快手平台账号,加盟商提交")
@Length(max = 250, message = "快手平台账号 长度不能超过250")
private String ksAccount;
@Length(max = 250, message = "平台账号 长度不能超过250")
@ApiModelProperty("平台账号")
private String account;
@Length(max = 250, message = "平台密码 长度不能超过250")
@ApiModelProperty("平台密码)")
private String password;
public PlatformBuildDO toDO(){
public PlatformBuildDO toDO() {
PlatformBuildDO platformBuildDO = new PlatformBuildDO();
platformBuildDO.setShopId(this.shopId);
platformBuildDO.setType(this.type);
@@ -88,6 +95,7 @@ public class PlatformBuildRequest {
platformBuildDO.setStorePositioningUrl(this.storePositioningUrl);
platformBuildDO.setAuthorizationUrl(this.authorizationUrl);
platformBuildDO.setAccount(this.account);
platformBuildDO.setPassword(this.password);
return platformBuildDO;
}

View File

@@ -41,9 +41,15 @@ public class PlatformBuildResponse {
@ApiModelProperty("授权书(抖音&快手非法人结算需要)")
private String authorizationUrl;
@ApiModelProperty("平台账号(快手,需要)")
@ApiModelProperty("快手平台账号,加盟商提交")
private String ksAccount;
@ApiModelProperty("平台账号")
private String account;
@ApiModelProperty("平台密码)")
private String password;
@ApiModelProperty("初审原因")
private String reason;
@ApiModelProperty("小程序美团外卖和饿了吗勇这个:最新审批原因")