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
package com.gkhy.safePlatform.targetDuty.model.dto.resp;
 
import java.sql.Timestamp;
import java.io.Serializable;
 
public class TargetDutyfileInfoDto implements Serializable {
        
    private Long id;
    //序号    
    private String indexNum;
    //岗位号/外键    
    private Long jobId;
    //责任书签订日期    
    private Timestamp signDate;
    //备注信息    
    private String memo;
    //责任书附件,多个附件用逗号隔开    
    private String extraFile;
        
    private Timestamp createTime;
        
    private Timestamp updateTime;
 
            
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
    //序号        
    public String getIndexNum() {
        return indexNum;
    }
 
    public void setIndexNum(String indexNum) {
        this.indexNum = indexNum;
    }
    //岗位号/外键        
    public Long getJobId() {
        return jobId;
    }
 
    public void setJobId(Long jobId) {
        this.jobId = jobId;
    }
    //责任书签订日期        
    public Timestamp getSignDate() {
        return signDate;
    }
 
    public void setSignDate(Timestamp signDate) {
        this.signDate = signDate;
    }
    //备注信息        
    public String getMemo() {
        return memo;
    }
 
    public void setMemo(String memo) {
        this.memo = memo;
    }
    //责任书附件,多个附件用逗号隔开        
    public String getExtraFile() {
        return extraFile;
    }
 
    public void setExtraFile(String extraFile) {
        this.extraFile = extraFile;
    }
            
    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;
    }
}