package com.ycl.platform.domain.vo;
|
|
import annotation.Excel;
|
import com.ycl.platform.base.AbsVo;
|
import lombok.Data;
|
import lombok.experimental.Accessors;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 考核规则展示
|
*
|
*/
|
@Data
|
@Accessors(chain = true)
|
public class CheckRuleVO extends AbsVo {
|
/**
|
* 模板id
|
*/
|
private Integer templateId;
|
|
/** 模板名 */
|
private String templateName;
|
/**
|
* 审核状态
|
*/
|
private Integer auditState;
|
/**
|
* 规则名称
|
*/
|
private String ruleName;
|
/**
|
* 规则类型
|
*/
|
private String ruleCategory;
|
|
/** 规则细则 */
|
private String ruleIndex;
|
|
/** 考核类型 */
|
private Long examineCategory;
|
|
/** 规则描述 */
|
private String ruleDescription;
|
|
/** 规则权重 */
|
private BigDecimal weight;
|
|
/** 启用状态 */
|
private Long state;
|
|
/** 逻辑删除 */
|
private String deleted;
|
|
}
|