feat:开户支行不为空
This commit is contained in:
@@ -3,6 +3,9 @@ package com.cool.store.request.wallet;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotBlank;
|
||||
import javax.validation.constraints.NotEmpty;
|
||||
|
||||
/**
|
||||
* @Author suzhuhong
|
||||
* @Date 2025/11/20 13:38
|
||||
@@ -109,24 +112,28 @@ public class CoolOpenBasicInfoRequest {
|
||||
* 结算卡
|
||||
*/
|
||||
@ApiModelProperty(value = "结算卡")
|
||||
@NotBlank(message = "结算卡不能为空")
|
||||
private String settlementCard;
|
||||
|
||||
/**
|
||||
* 开户支行名称
|
||||
*/
|
||||
@ApiModelProperty(value = "开户支行名称")
|
||||
@NotBlank(message = "开户支行名称不能为空")
|
||||
private String bankBranchName;
|
||||
|
||||
/**
|
||||
* 开户支行编号
|
||||
*/
|
||||
@ApiModelProperty(value = "开户支行编号")
|
||||
@NotBlank(message = "开户支行编号不能为空")
|
||||
private String bankBranchCode;
|
||||
|
||||
/**
|
||||
* 银行预留手机号
|
||||
*/
|
||||
@ApiModelProperty(value = "银行预留手机号")
|
||||
@NotBlank(message = "银行预留手机号不能为空")
|
||||
private String bankReservedPhone;
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user