package com.gkhy.safePlatform.specialWork.model.query.db;
|
|
public class ApprovalRuleListDbQuery {
|
|
//企业ID
|
private Long eid;
|
|
//部门ID
|
private Long depId;
|
|
//状态
|
private Byte status;
|
|
//作业类型
|
private Byte workType;
|
|
//作业等级
|
private Byte workLevel;
|
|
//创建人ID
|
private Long createUid;
|
|
//创建人员姓名
|
private String createUname;
|
|
private String ruleName;
|
|
public Long getEid() {
|
return eid;
|
}
|
|
public void setEid(Long eid) {
|
this.eid = eid;
|
}
|
|
public Long getDepId() {
|
return depId;
|
}
|
|
public void setDepId(Long depId) {
|
this.depId = depId;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
public Byte getWorkType() {
|
return workType;
|
}
|
|
public void setWorkType(Byte workType) {
|
this.workType = workType;
|
}
|
|
public Byte getWorkLevel() {
|
return workLevel;
|
}
|
|
public void setWorkLevel(Byte workLevel) {
|
this.workLevel = workLevel;
|
}
|
|
public Long getCreateUid() {
|
return createUid;
|
}
|
|
public void setCreateUid(Long createUid) {
|
this.createUid = createUid;
|
}
|
|
public String getCreateUname() {
|
return createUname;
|
}
|
|
public void setCreateUname(String createUname) {
|
this.createUname = createUname;
|
}
|
|
public String getRuleName() {
|
return ruleName;
|
}
|
|
public void setRuleName(String ruleName) {
|
this.ruleName = ruleName;
|
}
|
}
|