龚焕茏
2024-04-07 def325eb00744bae8f3494ddb253fe202ad76520
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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;
 
}