fuliqi
2024-12-25 7fa07718de92093c6315c5cb37bbc8dd7cdafa3c
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package com.ycl.platform.domain.entity;
 
import annotation.Excel;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ycl.system.entity.BaseEntity;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
 
/**
 * 考核积分明细对象 t_check_score
 *
 * @author ruoyi
 * @date 2024-04-22
 */
@Data
@TableName("t_check_score")
public class CheckScore extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /**  */
 
    private Long id;
 
    /** 分值 */
    @Excel(name = "分值")
    private BigDecimal score;
 
 
    /** deptid */
    @Excel(name = "区县")
    private Long deptId;
    @TableField(exist = false)
    private String deptName;
    //设备数量
    private Integer deviceCount;
    /** 考核模板id */
    @Excel(name = "考核模板id")
    private Integer templateId;
    /** 对应check_index_表id */
    private Long indexId;
    /** 考核标签(省厅/市局) */
    @Excel(name = "考核标签(省厅/市局)")
    private Integer examineTag;
 
    /** 考核类型(视频/车辆/人脸) */
    @Excel(name = "考核类型(视频/车辆/人脸)")
    private Short examineCategory;
    /** 修改时间 */
    @Excel(name = "修改时间")
    private Date updateTime;
 
    /** 创建时间 */
    @Excel(name = "创建时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date createTime;
    /** 修改人 */
    @Excel(name = "修改人")
    private Integer updateUser;
    /** 是否发布 */
    @Excel(name = "是否发布")
    private String publish;
 
    //折线图日期参数
    @TableField(exist = false)
    private String date;
 
    @TableField(exist = false)
    private Date startDate;
 
    @TableField(exist = false)
    private Date endDate;
 
    @TableField(exist = false)
    private List<String> quarter;
 
 
}