fix
This commit is contained in:
@@ -13,6 +13,8 @@
|
|||||||
<result property="settlerIdCardFront" column="settler_id_card_front" jdbcType="VARCHAR"/>
|
<result property="settlerIdCardFront" column="settler_id_card_front" jdbcType="VARCHAR"/>
|
||||||
<result property="settlerIdCardReverse" column="settler_id_card_reverse" jdbcType="VARCHAR"/>
|
<result property="settlerIdCardReverse" column="settler_id_card_reverse" jdbcType="VARCHAR"/>
|
||||||
<result property="settlerIdCardNo" column="settler_id_card_no" jdbcType="VARCHAR"/>
|
<result property="settlerIdCardNo" column="settler_id_card_no" jdbcType="VARCHAR"/>
|
||||||
|
<result property="settlerInHandFrontPicture" column="settler_in_hand_front_picture" jdbcType="VARCHAR"/>
|
||||||
|
<result property="settlerInHandBackPicture" column="settler_in_hand_back_picture" jdbcType="VARCHAR"/>
|
||||||
<result property="settlerBankPhotoUrl" column="settler_bank_photo_url" jdbcType="VARCHAR"/>
|
<result property="settlerBankPhotoUrl" column="settler_bank_photo_url" jdbcType="VARCHAR"/>
|
||||||
<result property="settlerBankNumber" column="settler_bank_number" jdbcType="VARCHAR"/>
|
<result property="settlerBankNumber" column="settler_bank_number" jdbcType="VARCHAR"/>
|
||||||
<result property="settlerBankMobile" column="settler_bank_mobile" jdbcType="VARCHAR"/>
|
<result property="settlerBankMobile" column="settler_bank_mobile" jdbcType="VARCHAR"/>
|
||||||
@@ -34,7 +36,7 @@
|
|||||||
id
|
id
|
||||||
,shop_id,audit_id,
|
,shop_id,audit_id,
|
||||||
type,settler_name,settler_id_card_front,settler_id_card_reverse,password,ks_account,
|
type,settler_name,settler_id_card_front,settler_id_card_reverse,password,ks_account,
|
||||||
settler_id_card_no,settler_bank_number,settler_bank_mobile,
|
settler_id_card_no,settler_in_hand_front_picture,settler_in_hand_back_picture,settler_bank_number,settler_bank_mobile,
|
||||||
settler_bank_name,
|
settler_bank_name,
|
||||||
account,store_positioning_url,authorization_url,
|
account,store_positioning_url,authorization_url,
|
||||||
create_time,update_time,create_user,
|
create_time,update_time,create_user,
|
||||||
|
|||||||
@@ -113,13 +113,13 @@ public class BuildInformationDO {
|
|||||||
private String settlerIdCardReverse;
|
private String settlerIdCardReverse;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 门店POS收款开户人手持身份证正面
|
* 结算人手持身份证正面
|
||||||
*/
|
*/
|
||||||
@Column(name = "settler_in_hand_front_picture")
|
@Column(name = "settler_in_hand_front_picture")
|
||||||
private String settlerInHandFrontPicture;
|
private String settlerInHandFrontPicture;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 门店POS收款开户人手持身份证反面
|
* 结算人手持身份证反面
|
||||||
*/
|
*/
|
||||||
@Column(name = "settler_in_hand_back_picture")
|
@Column(name = "settler_in_hand_back_picture")
|
||||||
private String settlerInHandBackPicture;
|
private String settlerInHandBackPicture;
|
||||||
|
|||||||
@@ -60,6 +60,17 @@ public class PlatformBuildDO {
|
|||||||
*/
|
*/
|
||||||
@Column(name = "settler_id_card_no")
|
@Column(name = "settler_id_card_no")
|
||||||
private String settlerIdCardNo;
|
private String settlerIdCardNo;
|
||||||
|
/**
|
||||||
|
* 结算人手持身份证正面
|
||||||
|
*/
|
||||||
|
@Column(name = "settler_in_hand_front_picture")
|
||||||
|
private String settlerInHandFrontPicture;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 结算人手持身份证反面
|
||||||
|
*/
|
||||||
|
@Column(name = "settler_in_hand_back_picture")
|
||||||
|
private String settlerInHandBackPicture;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 结算人银行卡照片
|
* 结算人银行卡照片
|
||||||
|
|||||||
@@ -41,6 +41,14 @@ public class PlatformBuildRequest {
|
|||||||
@ApiModelProperty("结算人身份证号")
|
@ApiModelProperty("结算人身份证号")
|
||||||
private String settlerIdCardNo;
|
private String settlerIdCardNo;
|
||||||
|
|
||||||
|
@ApiModelProperty("结算人手持身份证正面")
|
||||||
|
@NotBlank
|
||||||
|
private String settlerInHandFrontPicture;
|
||||||
|
|
||||||
|
@ApiModelProperty("结算人手持身份证反面")
|
||||||
|
@NotBlank
|
||||||
|
private String settlerInHandBackPicture;
|
||||||
|
|
||||||
@NotBlank
|
@NotBlank
|
||||||
@Length(max = 250, message = "结算人银行卡照片 长度不能超过250")
|
@Length(max = 250, message = "结算人银行卡照片 长度不能超过250")
|
||||||
@ApiModelProperty("结算人银行卡照片")
|
@ApiModelProperty("结算人银行卡照片")
|
||||||
@@ -78,8 +86,11 @@ public class PlatformBuildRequest {
|
|||||||
PlatformBuildDO platformBuildDO = new PlatformBuildDO();
|
PlatformBuildDO platformBuildDO = new PlatformBuildDO();
|
||||||
platformBuildDO.setShopId(this.shopId);
|
platformBuildDO.setShopId(this.shopId);
|
||||||
platformBuildDO.setType(this.type);
|
platformBuildDO.setType(this.type);
|
||||||
|
platformBuildDO.setSettlerName(this.settlerName);
|
||||||
platformBuildDO.setSettlerIdCardFront(this.settlerIdCardFront);
|
platformBuildDO.setSettlerIdCardFront(this.settlerIdCardFront);
|
||||||
platformBuildDO.setSettlerIdCardReverse(this.settlerIdCardReverse);
|
platformBuildDO.setSettlerIdCardReverse(this.settlerIdCardReverse);
|
||||||
|
platformBuildDO.setSettlerInHandFrontPicture(this.settlerInHandFrontPicture);
|
||||||
|
platformBuildDO.setSettlerInHandBackPicture(this.settlerInHandBackPicture);
|
||||||
platformBuildDO.setSettlerIdCardNo(this.settlerIdCardNo);
|
platformBuildDO.setSettlerIdCardNo(this.settlerIdCardNo);
|
||||||
platformBuildDO.setSettlerBankPhotoUrl(this.settlerBankPhotoUrl);
|
platformBuildDO.setSettlerBankPhotoUrl(this.settlerBankPhotoUrl);
|
||||||
platformBuildDO.setSettlerBankNumber(this.settlerBankNumber);
|
platformBuildDO.setSettlerBankNumber(this.settlerBankNumber);
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ import lombok.Data;
|
|||||||
* @Author: WangShuo
|
* @Author: WangShuo
|
||||||
* @Date: 2025/04/11/17:13
|
* @Date: 2025/04/11/17:13
|
||||||
* @Version 1.0
|
* @Version 1.0
|
||||||
* @注释:
|
* @注释:平台建店额外字段
|
||||||
*/
|
*/
|
||||||
@Data
|
@Data
|
||||||
public class PlatformBuildExtraFieldResponse {
|
public class PlatformBuildExtraFieldResponse {
|
||||||
|
|||||||
@@ -4,6 +4,8 @@ import io.swagger.annotations.ApiModelProperty;
|
|||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import org.hibernate.validator.constraints.Length;
|
import org.hibernate.validator.constraints.Length;
|
||||||
|
|
||||||
|
import javax.validation.constraints.NotBlank;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @Author: WangShuo
|
* @Author: WangShuo
|
||||||
* @Date: 2024/10/10/上午10:54
|
* @Date: 2024/10/10/上午10:54
|
||||||
@@ -24,7 +26,11 @@ public class PlatformBuildResponse {
|
|||||||
|
|
||||||
@ApiModelProperty("结算人身份证号")
|
@ApiModelProperty("结算人身份证号")
|
||||||
private String settlerIdCardNo;
|
private String settlerIdCardNo;
|
||||||
|
@ApiModelProperty("结算人手持身份证正面")
|
||||||
|
private String settlerInHandFrontPicture;
|
||||||
|
|
||||||
|
@ApiModelProperty("结算人手持身份证反面")
|
||||||
|
private String settlerInHandBackPicture;
|
||||||
@ApiModelProperty("结算人银行卡照片")
|
@ApiModelProperty("结算人银行卡照片")
|
||||||
private String settlerBankPhotoUrl;
|
private String settlerBankPhotoUrl;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user