xiaoyong931011
2023-08-31 384d14ce56375402eb682bc231220926b74dda04
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package cc.mrbird.febs.mall.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "MemberAuthDto", description = "参数接收类")
public class MemberAuthDto {
 
    @ApiModelProperty(value = "姓名", example = "姓名")
    private String name;
 
    @ApiModelProperty(value = "身份证号码", example = "身份证号码")
    private String cardNum;
 
    @ApiModelProperty(value = "正面", example = "正面")
    private String cardFront;
 
    @ApiModelProperty(value = "反面", example = "反面")
    private String cardBack;
 
}