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
package com.gkhy.safePlatform.targetDuty.model.dto.req;
 
import com.gkhy.safePlatform.targetDuty.utils.poihelper.ExcelCell;
 
import java.io.Serializable;
import java.sql.Timestamp;
 
public class RewardPunishmentStandardImportExcel implements Serializable {
    //奖惩名称
    @ExcelCell(index = 1)
    private String qName;
    //奖惩类型 1:奖励 2:惩罚
    @ExcelCell(index = 2)
    private Integer standardType;
    //奖惩内容
    @ExcelCell(index = 3)
    private String content;
    //依据
    @ExcelCell(index = 4)
    private String reason;
    //备注信息
    @ExcelCell(index = 5)
    private String memo;
 
    //奖惩类型 1:奖励 2:惩罚
    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 getQName() {
        return qName;
    }
 
    public void setQName(String qName) {
        this.qName = qName;
    }
    //依据
    public String getReason() {
        return reason;
    }
 
    public void setReason(String reason) {
        this.reason = reason;
    }
    //备注信息
    public String getMemo() {
        return memo;
    }
 
    public void setMemo(String memo) {
        this.memo = memo;
    }
}