1
13693261870
2022-09-16 762f2fb45db004618ba099aa3c0bd89dba1eb843
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
package com.landtool.lanbase.modules.org.entity;
 
import java.util.Date;
 
import com.alibaba.excel.annotation.ExcelProperty;
 
/**
 * @Description: 配合jqgrid的json单元格式的pojo {@link OrgUnit}{@link OrgUser}
 * @Author: zimao.guo
 * @Date: 14:32 2018/2/26
 */
public class OrgUserWithUnitCell {
 
    //系统用户ID
    @ExcelProperty("用户id")
    private Long userid;
 
    //系统登录名
    @ExcelProperty("系统登录名")
    private String loginname;
 
    //中文名
    @ExcelProperty("中文名")
    private String chinesename;
 
    //手机号
    @ExcelProperty("手机号")
    private String mobileno;
 
    //是否接收短信
    @ExcelProperty("是否接收短信")
    private Long isreceivemsg;
 
    //状态 0 正常 1 禁用 2 删除 3申请 4拒批
    @ExcelProperty("状态")
    private Long userstatus;
 
    //记录添加人id
    @ExcelProperty("记录添加人id")
    private Long rcreateuser;
 
    //记录添加时间
    @ExcelProperty("记录添加时间")
    private Date rcreatedate;
 
    //单位名称
    @ExcelProperty("单位名称")
    private String unitnames;
    
    //职务名称
    @ExcelProperty("职务名称")
    private String joblevel;
 
    //部门名称
    @ExcelProperty("部门名称")
    private String deptname;
 
    public Long getUserid() {
        return userid;
    }
 
    public void setUserid(Long userid) {
        this.userid = userid;
    }
 
    public String getLoginname() {
        return loginname;
    }
 
    public void setLoginname(String loginname) {
        this.loginname = loginname;
    }
 
    public String getChinesename() {
        return chinesename;
    }
 
    public void setChinesename(String chinesename) {
        this.chinesename = chinesename;
    }
 
    public String getMobileno() {
        return mobileno;
    }
 
    public void setMobileno(String mobileno) {
        this.mobileno = mobileno;
    }
 
    public Long getUserstatus() {
        return userstatus;
    }
 
    public void setUserstatus(Long userstatus) {
        this.userstatus = userstatus;
    }
 
    /**
     * 设置:记录添加人id
     */
    public void setRcreateuser(Long rcreateuser) {
        this.rcreateuser = rcreateuser;
    }
    /**
     * 获取:记录添加人id
     */
    public Long getRcreateuser() {
        return rcreateuser;
    }
 
    public Date getRcreatedate() {
        return rcreatedate;
    }
 
    public void setRcreatedate(Date rcreatedate) {
        this.rcreatedate = rcreatedate;
    }
 
    public Long getIsreceivemsg() {
        return isreceivemsg;
    }
 
    public void setIsreceivemsg(Long isreceivemsg) {
        this.isreceivemsg = isreceivemsg;
    }
 
    public String getUnitnames() {
        return unitnames;
    }
 
    public void setUnitnames(String unitnames) {
        this.unitnames = unitnames;
    }
    
    public String getJoblevel() {
        return joblevel;
    }
 
    public void setJoblevel(String joblevel) {
        this.joblevel = joblevel;
    }
 
    public String getDeptname(){return  deptname;}
 
    public void setDeptname(String deptname){this.deptname=deptname;}
}