package com.gk.hotwork.specialWork.model.query.db;
|
|
public class ApprovalRuleUnitDbQuery {
|
/** 所属规则ID **/
|
private Long ruleId;
|
|
/** 层级ID **/
|
private Long stepId;
|
|
/** 单元规则状态 **/
|
private Byte status;
|
|
/** 绑定部门ID **/
|
private Long bindDepId;
|
|
/** 绑定人员ID **/
|
private Long bindUid;
|
|
public Long getRuleId() {
|
return ruleId;
|
}
|
|
public void setRuleId(Long ruleId) {
|
this.ruleId = ruleId;
|
}
|
|
public Long getStepId() {
|
return stepId;
|
}
|
|
public void setStepId(Long stepId) {
|
this.stepId = stepId;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
public Long getBindDepId() {
|
return bindDepId;
|
}
|
|
public void setBindDepId(Long bindDepId) {
|
this.bindDepId = bindDepId;
|
}
|
|
public Long getBindUid() {
|
return bindUid;
|
}
|
|
public void setBindUid(Long bindUid) {
|
this.bindUid = bindUid;
|
}
|
}
|