package com.ycl.platform.domain.entity;
|
|
import annotation.Excel;
|
import com.ycl.system.entity.BaseEntity;
|
import org.apache.commons.lang.builder.ToStringBuilder;
|
import org.apache.commons.lang.builder.ToStringStyle;
|
|
/**
|
* 考核规则对象 t_check_rule
|
*
|
* @author ruoyi
|
* @date 2024-04-01
|
*/
|
public class CheckRule extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** */
|
private Long id;
|
|
/** 规则名称 */
|
@Excel(name = "规则名称")
|
private String ruleName;
|
|
/** 规则细则 */
|
@Excel(name = "规则细则")
|
private String ruleIndex;
|
|
/** 规则类型 */
|
@Excel(name = "规则类型")
|
private Long ruleCategory;
|
|
/** 考核类型 */
|
@Excel(name = "考核类型")
|
private Long examineCategory;
|
|
/** 规则描述 */
|
@Excel(name = "规则描述")
|
private String ruleDescription;
|
|
/** 启用状态 */
|
@Excel(name = "启用状态")
|
private Long state;
|
|
/** 逻辑删除 */
|
private String deleted;
|
|
public void setId(Long id)
|
{
|
this.id = id;
|
}
|
|
public Long getId()
|
{
|
return id;
|
}
|
public void setRuleName(String ruleName)
|
{
|
this.ruleName = ruleName;
|
}
|
|
public String getRuleName()
|
{
|
return ruleName;
|
}
|
public void setRuleIndex(String ruleIndex)
|
{
|
this.ruleIndex = ruleIndex;
|
}
|
|
public String getRuleIndex()
|
{
|
return ruleIndex;
|
}
|
public void setRuleCategory(Long ruleCategory)
|
{
|
this.ruleCategory = ruleCategory;
|
}
|
|
public Long getRuleCategory()
|
{
|
return ruleCategory;
|
}
|
public void setExamineCategory(Long examineCategory)
|
{
|
this.examineCategory = examineCategory;
|
}
|
|
public Long getExamineCategory()
|
{
|
return examineCategory;
|
}
|
public void setRuleDescription(String ruleDescription)
|
{
|
this.ruleDescription = ruleDescription;
|
}
|
|
public String getRuleDescription()
|
{
|
return ruleDescription;
|
}
|
|
public void setState(Long state)
|
{
|
this.state = state;
|
}
|
|
public Long getState()
|
{
|
return state;
|
}
|
public void setDeleted(String deleted)
|
{
|
this.deleted = deleted;
|
}
|
|
public String getDeleted()
|
{
|
return deleted;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("ruleName", getRuleName())
|
.append("ruleIndex", getRuleIndex())
|
.append("ruleCategory", getRuleCategory())
|
.append("examineCategory", getExamineCategory())
|
.append("ruleDescription", getRuleDescription())
|
.append("state", getState())
|
.append("createTime", getCreateTime())
|
.append("updateTime", getUpdateTime())
|
.append("deleted", getDeleted())
|
.toString();
|
}
|
}
|