package com.gk.hotwork.specialWork.model.query.db;
|
|
import javax.validation.constraints.NotBlank;
|
|
public class ApprovalRuleStepListDbQuery {
|
|
//所属规则ID
|
private Long ruleId;
|
|
//状态
|
private Byte status;
|
|
//类型
|
private Byte type;
|
/**
|
* 层级名称
|
*/
|
@NotBlank(message = "层级名称不能为空!")
|
private String stepName;
|
|
public Long getRuleId() {
|
return ruleId;
|
}
|
|
public void setRuleId(Long ruleId) {
|
this.ruleId = ruleId;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
public Byte getType() {
|
return type;
|
}
|
|
public void setType(Byte type) {
|
this.type = type;
|
}
|
|
public String getStepName() {
|
return stepName;
|
}
|
|
public void setStepName(String stepName) {
|
this.stepName = stepName;
|
}
|
}
|