package com.landtool.lanbase.modules.org.entity;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @author zimao.guo
|
* @Description: TODO(用户审核表)
|
* @date 2018-01-24 14:25:23
|
*/
|
public class OrgUserAuth implements Serializable {
|
|
//审核ID
|
private Long authId;
|
//系统用户ID
|
private Long userId;
|
//审核级别:0:初审1:终审
|
private Long authGrad;
|
//审核人用户ID
|
private Long authUserId;
|
//审核人ID
|
private Long rCreateUser;
|
//审核时间
|
private Date rCreateDate;
|
//记录排序
|
private String rOrder;
|
//审核结果0:不通过1:通过
|
private Long authResult;
|
|
/**
|
* 设置:审核ID
|
*/
|
public void setAuthId(Long authId) {
|
this.authId = authId;
|
}
|
/**
|
* 获取:审核ID
|
*/
|
public Long getAuthId() {
|
return authId;
|
}
|
/**
|
* 设置:系统用户ID
|
*/
|
public void setUserId(Long userId) {
|
this.userId = userId;
|
}
|
/**
|
* 获取:系统用户ID
|
*/
|
public Long getUserId() {
|
return userId;
|
}
|
/**
|
* 设置:审核级别:0:初审1:终审
|
*/
|
public void setAuthGrad(Long authGrad) {
|
this.authGrad = authGrad;
|
}
|
/**
|
* 获取:审核级别:0:初审1:终审
|
*/
|
public Long getAuthGrad() {
|
return authGrad;
|
}
|
/**
|
* 设置:审核人用户ID
|
*/
|
public void setAuthUserId(Long authUserId) {
|
this.authUserId = authUserId;
|
}
|
/**
|
* 获取:审核人用户ID
|
*/
|
public Long getAuthUserId() {
|
return authUserId;
|
}
|
/**
|
* 设置:审核人ID
|
*/
|
public void setrCreateUser(Long rCreateUser) {
|
this.rCreateUser = rCreateUser;
|
}
|
/**
|
* 获取:审核人ID
|
*/
|
public Long getrCreateUser() {
|
return rCreateUser;
|
}
|
/**
|
* 设置:审核时间
|
*/
|
public void setrCreateDate(Date rCreateDate) {
|
this.rCreateDate = rCreateDate;
|
}
|
/**
|
* 获取:审核时间
|
*/
|
public Date getrCreateDate() {
|
return rCreateDate;
|
}
|
/**
|
* 设置:记录排序
|
*/
|
public void setrOrder(String rOrder) {
|
this.rOrder = rOrder;
|
}
|
/**
|
* 获取:记录排序
|
*/
|
public String getrOrder() {
|
return rOrder;
|
}
|
/**
|
* 设置:审核结果0:不通过1:通过
|
*/
|
public void setAuthResult(Long authResult) {
|
this.authResult = authResult;
|
}
|
/**
|
* 获取:审核结果0:不通过1:通过
|
*/
|
public Long getAuthResult() {
|
return authResult;
|
}
|
|
}
|