提交 | 用户 | age
|
200f72
|
1 |
package com.hz.his.dto.employee; |
W |
2 |
|
|
3 |
import com.gitee.sunchenbin.mybatis.actable.annotation.Column; |
|
4 |
import com.gitee.sunchenbin.mybatis.actable.annotation.Index; |
|
5 |
import com.gitee.sunchenbin.mybatis.actable.annotation.Table; |
|
6 |
import com.gitee.sunchenbin.mybatis.actable.annotation.Unique; |
|
7 |
import com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant; |
|
8 |
import lombok.Data; |
|
9 |
|
|
10 |
import java.util.List; |
|
11 |
|
|
12 |
/** |
|
13 |
* |
|
14 |
* 员工 |
|
15 |
* author:fhx |
|
16 |
* Date:2021/8/4 17:35 |
|
17 |
*/ |
|
18 |
|
|
19 |
@Data |
|
20 |
public class EmployeeVo { |
|
21 |
|
|
22 |
private String unionId; |
|
23 |
|
|
24 |
private String userId; |
|
25 |
|
|
26 |
private String cnName; |
|
27 |
|
|
28 |
private String enName; |
|
29 |
|
|
30 |
private String tel; |
|
31 |
|
|
32 |
private String email; |
|
33 |
|
|
34 |
private String imgUrl; |
|
35 |
|
|
36 |
private String apiId; |
|
37 |
|
|
38 |
private Integer isJob; |
|
39 |
|
|
40 |
private Integer gender ; |
|
41 |
|
|
42 |
private String employeeNo; |
|
43 |
|
|
44 |
private String roleId; |
|
45 |
|
|
46 |
private Integer isSyncRole; |
|
47 |
private String idCard; |
|
48 |
private String birthday; |
|
49 |
private String degree; |
|
50 |
private String certificateNo; |
|
51 |
private String password; |
|
52 |
private Integer isPerformanceEmp; |
|
53 |
private String cardId; |
|
54 |
|
|
55 |
//sql语句返回使用字段 |
|
56 |
private String shopId; |
|
57 |
private String shopName; |
|
58 |
private String shopHisId; |
|
59 |
private String roleName; |
|
60 |
private String roleStr; |
|
61 |
private String roleTypeId; |
|
62 |
private String adminRoleId; |
|
63 |
//登录角色id |
|
64 |
private String loginRoleId; |
|
65 |
|
|
66 |
// 关联后台管理员id |
|
67 |
private String adminId; |
|
68 |
private String adminName; |
|
69 |
|
|
70 |
public EmployeeVo() { |
|
71 |
} |
|
72 |
|
|
73 |
|
|
74 |
} |