songhuangfeng123
2022-08-18 233fb69fa9d1694e97337d74fa3da72cacda04c1
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
121
122
123
124
125
126
127
128
129
130
131
package com.gkhy.safePlatform.targetDuty.model.dto.req;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.gkhy.safePlatform.targetDuty.entity.ExamineItem;
import com.gkhy.safePlatform.targetDuty.entity.TargetExamine;
 
import java.io.Serializable;
import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.List;
 
public class TargetExamineSaveOrUpdate implements Serializable {
    @TableId(type = IdType.AUTO)
    private Long id;
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    //关联的目标分解/外键
    private Long targetDivideDetailId;
 
    public Long getTargetDivideDetailId() {
        return targetDivideDetailId;
    }
 
    public void setTargetDivideDetailId(Long targetDivideDetailId) {
        this.targetDivideDetailId = targetDivideDetailId;
    }
    //上报值
    private String uploadValue;
 
    public String getUploadValue() {
        return uploadValue;
    }
 
    public void setUploadValue(String uploadValue) {
        this.uploadValue = uploadValue;
    }
    //上报时间
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Timestamp uploadDate;
 
    public Timestamp getUploadDate() {
        return uploadDate;
    }
 
    public void setUploadDate(Timestamp uploadDate) {
        this.uploadDate = uploadDate;
    }
    //考核结果 1:合格 2:不合格
    private Integer examineResult;
 
    public Integer getExamineResult() {
        return examineResult;
    }
 
    public void setExamineResult(Integer examineResult) {
        this.examineResult = examineResult;
    }
    //考核人ID/外键
    private Long examinePersonId;
 
    public Long getExaminePersonId() {
        return examinePersonId;
    }
 
    public void setExaminePersonId(Long examinePersonId) {
        this.examinePersonId = examinePersonId;
    }
    //考核人名称
    private String examinePersonName;
 
    public String getExaminePersonName() {
        return examinePersonName;
    }
 
    public void setExaminePersonName(String examinePersonName) {
        this.examinePersonName = examinePersonName;
    }
    //考核时间
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Timestamp examineDate;
 
    public Timestamp getExamineDate() {
        return examineDate;
    }
 
    public void setExamineDate(Timestamp examineDate) {
        this.examineDate = examineDate;
    }
 
 
//
//    @TableId(type = IdType.AUTO)
//    private Long id;
//    public Long getId() {
//        return id;
//    }
//
//    public void setId(Long id) {
//        this.id = id;
//    }
//
//    //关联的考核数据列表
//    private List<TargetExamine> examineList = new ArrayList<>();
//
//    public List<TargetExamine> getExamineList() {
//        return examineList;
//    }
//
//    public void setExamineList(List<TargetExamine> examineList) {
//        this.examineList = examineList;
//    }
//
//    //要删除的id集合,多个用逗号隔开
//    private String delIds;
//
//    public String getDelIds() {
//        return delIds;
//    }
//
//    public void setDelIds(String delIds) {
//        this.delIds = delIds;
//    }
}