| | |
| | | package com.ycl.platform.domain.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.ycl.platform.base.AbsEntity; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | 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; |
| | | |
| | | /** |
| | | * 考核模板 |
| | | * |
| | | * @author xp |
| | | * @since 2024-03-06 |
| | | * 考核模板对象 t_check_template |
| | | * |
| | | * @author ruoyi |
| | | * @date 2024-04-01 |
| | | */ |
| | | @Data |
| | | @Accessors(chain = true) |
| | | @TableName("t_check_template") |
| | | @ApiModel(value = "CheckTemplate对象", description = "考核模板") |
| | | public class CheckTemplate extends AbsEntity { |
| | | |
| | | public class CheckTemplate |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 模板名称 |
| | | */ |
| | | @TableField("template_name") |
| | | /** */ |
| | | private Integer id; |
| | | |
| | | /** 模板名称 */ |
| | | @Excel(name = "模板名称") |
| | | private String templateName; |
| | | |
| | | @ApiModelProperty("调整系数") |
| | | @TableField("adjust_coefficient") |
| | | private Integer adjustCoefficient; |
| | | /** 调整系数 */ |
| | | @Excel(name = "调整系数") |
| | | private Long adjustCoefficient; |
| | | |
| | | /** |
| | | * 调整系数的方式:乘除 |
| | | */ |
| | | @TableField("adjust_way") |
| | | /** 调整方式:乘除 */ |
| | | @Excel(name = "调整方式:乘除") |
| | | private String adjustWay; |
| | | /** 考核标签(省厅 市局)*/ |
| | | @Excel(name = "考核标签") |
| | | private Short examineTag; |
| | | /** 考核类型 */ |
| | | @Excel(name = "考核类型") |
| | | private Short examineCategory; |
| | | |
| | | @ApiModelProperty("状态") |
| | | @TableField("status") |
| | | /** 定时任务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 String deleted; |
| | | |
| | | |
| | | |
| | | } |