Air
2024-11-04 a1f06d31b7b4cac569c34bdfbb68de77f2858ffe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.nova.sankuai.domain.dto.zhongzan;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotBlank;
 
@ApiModel(value = "绑卡发验证码DTO")
@Data
public class BindCardSmsDTO {
    @ApiModelProperty(value = "订单号", required = true)
    @NotBlank(message = "订单号不能为空")
    private String orderNo;
 
    @ApiModelProperty(value = "卡号", required = true)
    @NotBlank(message = "卡号不能为空")
    private String bankCard;
 
    @ApiModelProperty(value = "开户行编码")
    private String bankCode;
 
    @ApiModelProperty(value = "姓名", required = true)
    @NotBlank(message = "姓名不能为空")
    private String userName;
 
    @ApiModelProperty(value = "身份证", required = true)
    @NotBlank(message = "身份证不能为空")
    private String idCardNumber;
 
    @ApiModelProperty(value = "预留手机号", required = true)
    @NotBlank(message = "预留手机号不能为空")
    private String userMobile;
}