package com.landtool.lanbase.modules.sys.entity;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @author lanbase
|
* @Description: TODO(应用程序查看权限申请表)
|
*/
|
public class SysSysteminfoApply 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;
|
|
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;
|
}
|
}
|