package com.ycl.platform.domain.entity; import annotation.Excel; import com.fasterxml.jackson.annotation.JsonFormat; import com.ycl.system.entity.BaseEntity; import lombok.Data; import lombok.experimental.Accessors; import org.apache.commons.lang.builder.ToStringBuilder; import org.apache.commons.lang.builder.ToStringStyle; import java.math.BigDecimal; import java.util.Date; /** * 考核模板对象 t_check_template * * @author ruoyi * @date 2024-04-01 */ @Data @Accessors(chain = true) public class CheckTemplate { private static final long serialVersionUID = 1L; /** */ private Integer id; /** 模板名称 */ @Excel(name = "模板名称") private String templateName; /** 调整系数 */ @Excel(name = "调整系数") private BigDecimal adjustCoefficient; /** 调整方式:乘除 */ @Excel(name = "调整方式:乘除") private String adjustWay; /** 考核标签(省厅 市局)*/ @Excel(name = "考核标签") private Short examineTag; /** 考核类型 */ @Excel(name = "考核类型") private Short examineCategory; /** 定时任务id*/ @Excel(name = "定时任务id") private Integer jobId; /** 启用/停用 */ @Excel(name = "启用/停用") private String status; /** 区县 */ @Excel(name = "区县") private String deptId; /** 报警分数 */ @Excel(name = "报警分数") private BigDecimal alarmScore; /** 考核频率 */ @Excel(name = "考核频率") private Short frequency; /** 考核描述 */ @Excel(name = "考核描述") private String description; private Long createUser; private String createUserName; private Long updateUser; private String updateUserName; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date createTime; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date updateTime; /** 逻辑删除 */ private Integer deleted; }