package com.landtool.lanbase.modules.sys.entity;
|
|
import java.io.Serializable;
|
|
/**
|
* @author lanbase
|
* @Description: TODO(应用程序查看权限申请表)
|
*/
|
public class SysSysteminfoApplyJoinOrgUser implements Serializable {
|
//主键
|
private Integer id;
|
//应用程序ID
|
private Integer appid;
|
//用户ID
|
private Integer userid;
|
//申请时间
|
private java.sql.Timestamp applytime;
|
//审核结果:0待批复、1通过、2不通过
|
private Integer auditresult;
|
//审核意见
|
private String auditopinion;
|
//中文名
|
private String chinesename;
|
//单位或部门ID
|
private Integer unitid;
|
//单位名称
|
private String unitname;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getAppid() {
|
return appid;
|
}
|
|
public void setAppid(Integer appid) {
|
this.appid = appid;
|
}
|
|
public Integer getUserid() {
|
return userid;
|
}
|
|
public void setUserid(Integer userid) {
|
this.userid = userid;
|
}
|
|
public java.sql.Timestamp getApplytime() {
|
return applytime;
|
}
|
|
public void setApplytime(java.sql.Timestamp applytime) {
|
this.applytime = applytime;
|
}
|
|
public Integer getAuditresult() {
|
return auditresult;
|
}
|
|
public void setAuditresult(Integer auditresult) {
|
this.auditresult = auditresult;
|
}
|
|
public String getAuditopinion() {
|
return auditopinion;
|
}
|
|
public void setAuditopinion(String auditopinion) {
|
this.auditopinion = auditopinion;
|
}
|
|
public String getChinesename() {
|
return chinesename;
|
}
|
|
public void setChinesename(String chinesename) {
|
this.chinesename = chinesename;
|
}
|
|
public Integer getUnitid() {
|
return unitid;
|
}
|
|
public void setUnitid(Integer unitid) {
|
this.unitid = unitid;
|
}
|
|
public String getUnitname() {
|
return unitname;
|
}
|
|
public void setUnitname(String unitname) {
|
this.unitname = unitname;
|
}
|
}
|