wangrenhuang
2023-06-25 ad8ab8e2ca1ad1d94c42f13a664f1276ba6d93cd
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package com.hz.his.dto.employee;
 
import com.gitee.sunchenbin.mybatis.actable.annotation.Column;
import com.gitee.sunchenbin.mybatis.actable.annotation.Index;
import com.gitee.sunchenbin.mybatis.actable.annotation.Table;
import com.gitee.sunchenbin.mybatis.actable.annotation.Unique;
import com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant;
import lombok.Data;
 
import java.util.List;
 
/**
 *
 * 员工
 * author:fhx
 * Date:2021/8/4 17:35
 */
 
@Data
public class EmployeeVo {
 
    private String id;
    private String unionId;
 
    private String userId;
 
    private String cnName;
 
    private String enName;
 
    private String tel;
 
    private String email;
 
    private String imgUrl;
 
    private String apiId;
 
    private Integer isJob;
 
    private Integer gender ;
 
    private String employeeNo;
 
    private String roleId;
 
    private Integer isSyncRole;
    private String idCard;
    private String birthday;
    private String degree;
    private String certificateNo;
    private String password;
    private Integer isPerformanceEmp;
    private String cardId;
 
    //sql语句返回使用字段
    private String shopId;
    private String shopName;
    private String shopHisId;
    private String roleName;
    private String roleStr;
    private String roleTypeId;
    private String adminRoleId;
    //登录角色id
    private String loginRoleId;
 
    // 关联后台管理员id
    private String adminId;
    private String adminName;
 
    public EmployeeVo() {
    }
 
 
}