龚焕茏
2024-04-30 a90d4c73e67b27338e941f88673fd17fe8b2b5ff
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
package com.ycl.platform.base;
 
import annotation.Excel;
import com.fasterxml.jackson.annotation.JsonFormat;
 
import java.util.Date;
 
public abstract class CheckIndex {
    public Long id;
    //查询条件,日期
    public String date;
 
    @Excel(name = "日期",dateFormat = "yyyy-MM-dd")
    public Date createTime;
 
    public Long deptId;
    @Excel(name = "区县")
    public String deptName;
 
    /** 考核标签(省厅/市局) */
    @Excel(name = "考核标签", dictType = "platform_examine_tag")
    public Long examineTag;
 
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getDate() {
        return date;
    }
 
    public void setDate(String date) {
        this.date = date;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Long getDeptId() {
        return deptId;
    }
 
    public void setDeptId(Long deptId) {
        this.deptId = deptId;
    }
 
    public String getDeptName() {
        return deptName;
    }
 
    public void setDeptName(String deptName) {
        this.deptName = deptName;
    }
 
    public Long getExamineTag() {
        return examineTag;
    }
 
    public void setExamineTag(Long examineTag) {
        this.examineTag = examineTag;
    }
}