songhuangfeng123
2022-07-29 f4b7ba5ab9850b45e969ff5967b1214f708f1f70
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
package com.gkhy.safePlatform.targetDuty.model.dto.resp;
 
import com.gkhy.safePlatform.targetDuty.utils.poihelper.ExcelCell;
 
import java.io.Serializable;
import java.sql.Timestamp;
 
public class RewardPunishmentDetailExcel implements Serializable {
    //员工(多个用逗号隔开)
    private String personId;
 
    @ExcelCell(index = 1)
    private Timestamp createTime;
 
    //奖惩类型 1:奖励 2:惩罚
    @ExcelCell(index = 2)
    private Integer standardType;
 
    //被奖惩者
    @ExcelCell(index = 3)
    private String personName;
 
    //奖惩内容
    @ExcelCell(index = 4)
    private String content;
 
    //依据
    @ExcelCell(index = 5)
    private String reason;
 
    public Integer getStandardType() {
        return standardType;
    }
 
    public void setStandardType(Integer standardType) {
        this.standardType = standardType;
    }
 
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
 
    public String getReason() {
        return reason;
    }
 
    public void setReason(String reason) {
        this.reason = reason;
    }
 
 
    public String getPersonId() {
        return personId;
    }
 
    public void setPersonId(String personId) {
        this.personId = personId;
    }
 
    public String getPersonName() {
        return personName;
    }
 
    public void setPersonName(String personName) {
        this.personName = personName;
    }
 
    public Timestamp getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Timestamp createTime) {
        this.createTime = createTime;
    }
            
}