xiangpei
2024-09-06 3848c5677aefdb201c24d615a7c2ad03fd5154e6
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
package com.ycl.platform.domain.vo;
 
import annotation.Excel;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class RuleExcelVO {
    /** 规则id */
    private Integer ruleId;
    /** 考核类别 */
    private Integer examineCategory;
    /** 考核标签 */
    private Integer examineTag;
    /** 权重 */
    private BigDecimal weight;
    /** 模板名 */
    @Excel(name = "模板名")
    private String templateName;
    /** 规则名 */
    @Excel(name = "规则名",width = 25)
    private String ruleName;
    /** 权重 */
    @Excel(name = "省厅考核权重")
    private BigDecimal provinceWeight;
    /** 权重 */
    @Excel(name = "区县考核权重")
    private BigDecimal countyWeight;
    /** 规则描述 */
    @Excel(name = "规则描述",width = 200,height = 25)
    private String ruleDescription;
}