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; }