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
35
| package com.thhy.staff.modules.biz.platuser.entity;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
| @Data
| public class MpRegisterInfoVo implements Serializable {
|
| private String photoUrl;
|
| private String userId;
|
| private String sex;
|
| private String realName;
|
| private String phone;
|
| private String idNo;
|
| private String posId;
|
| private String posName;
|
| private String remark;
|
| private Integer applyFlag;
|
| private String companyId;
|
| private String companyName;
|
| private Integer isLogin;
| }
|
|