kongzy
2024-09-23 d015cc0b48ca51a2b93b6c60c91dc352a104b1e7
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
package com.gkhy.safePlatform.targetDuty.model.dto.req;
 
import java.sql.Timestamp;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.gkhy.safePlatform.targetDuty.annotation.Query;
 
public class ExamineItemQueryCriteria {
        
    @Query()
    private Long id;
    //绩效考核模板ID/外键    
    @Query()
    private Long examineTemplateId;
    //类型    
    @Query()
    private String itemType;
    //考核项目    
    @Query()
    private String itemDetail;
    //考核内容    
    @Query()
    private String content;
    //评定标准    
    @Query()
    private String judgeStandard;
    //考核说明    
    @Query()
    private String memo;
        
    @Query()
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Timestamp createTime;
        
    @Query()
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Timestamp updateTime;
    //是否删除 0:未删除 1:删除
    @Query()
    private Integer delFlag = 0;
    public Integer getDelFlag() {
        return delFlag;
    }
 
    public void setDelFlag(Integer delFlag) {
        this.delFlag = delFlag;
    }
            
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
    //绩效考核模板ID/外键        
    public Long getExamineTemplateId() {
        return examineTemplateId;
    }
 
    public void setExamineTemplateId(Long examineTemplateId) {
        this.examineTemplateId = examineTemplateId;
    }
    //类型        
    public String getItemType() {
        return itemType;
    }
 
    public void setItemType(String itemType) {
        this.itemType = itemType;
    }
    //考核项目        
    public String getItemDetail() {
        return itemDetail;
    }
 
    public void setItemDetail(String itemDetail) {
        this.itemDetail = itemDetail;
    }
    //考核内容        
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
    //评定标准        
    public String getJudgeStandard() {
        return judgeStandard;
    }
 
    public void setJudgeStandard(String judgeStandard) {
        this.judgeStandard = judgeStandard;
    }
    //考核说明        
    public String getMemo() {
        return memo;
    }
 
    public void setMemo(String memo) {
        this.memo = memo;
    }
            
    public Timestamp getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Timestamp createTime) {
        this.createTime = createTime;
    }
            
    public Timestamp getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Timestamp updateTime) {
        this.updateTime = updateTime;
    }
}