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
| package com.gear.customer.swx.vo.request;
|
| import com.baomidou.mybatisplus.annotation.IdType;
| import com.baomidou.mybatisplus.annotation.TableId;
| import com.gear.common.annotation.Excel;
| import lombok.Data;
|
| @Data
| public class SwxUserIdentificationVo {
| private String surname;
|
| private String name;
|
| private String country;
|
| private Integer sex;
|
| private String address;
|
| private String phone;
|
| private String birthday;
|
| private Integer idType;
|
| private String idNumber;
|
| private String frontImg;
|
| private String reverseImg;
|
| private String handImg;
| }
|
|