提交 | 用户 | 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 |
|
ad8ab8
|
22 |
private String id; |
200f72
|
23 |
private String unionId; |
W |
24 |
|
|
25 |
private String userId; |
|
26 |
|
|
27 |
private String cnName; |
|
28 |
|
|
29 |
private String enName; |
|
30 |
|
|
31 |
private String tel; |
|
32 |
|
|
33 |
private String email; |
|
34 |
|
|
35 |
private String imgUrl; |
|
36 |
|
|
37 |
private String apiId; |
|
38 |
|
|
39 |
private Integer isJob; |
|
40 |
|
|
41 |
private Integer gender ; |
|
42 |
|
|
43 |
private String employeeNo; |
|
44 |
|
|
45 |
private String roleId; |
|
46 |
|
|
47 |
private Integer isSyncRole; |
|
48 |
private String idCard; |
|
49 |
private String birthday; |
|
50 |
private String degree; |
|
51 |
private String certificateNo; |
|
52 |
private String password; |
|
53 |
private Integer isPerformanceEmp; |
|
54 |
private String cardId; |
|
55 |
|
|
56 |
//sql语句返回使用字段 |
|
57 |
private String shopId; |
|
58 |
private String shopName; |
|
59 |
private String shopHisId; |
|
60 |
private String roleName; |
|
61 |
private String roleStr; |
|
62 |
private String roleTypeId; |
|
63 |
private String adminRoleId; |
|
64 |
//登录角色id |
|
65 |
private String loginRoleId; |
|
66 |
|
|
67 |
// 关联后台管理员id |
|
68 |
private String adminId; |
|
69 |
private String adminName; |
|
70 |
|
|
71 |
public EmployeeVo() { |
|
72 |
} |
|
73 |
|
|
74 |
|
|
75 |
} |