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;}
|
}
|