郑永安
2023-09-19 69185134fcfaf913ea45f1255677225a2cc311a4
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
package com.gk.hotwork.doublePrevention.entity.dto.req;
 
import com.fasterxml.jackson.annotation.JsonFormat;
 
import java.util.Date;
 
public class PreventDangerRectifySaveReqDTO {
 
    /**
     * 隐患管理单Id
     */
    private Long dangerManagerId;
    /**
     * 整改期限
     */
    @JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss")
    private Date rectifyTime;
    /**
     * 整改责任人
     */
    private Long liablePersonId;
    /**
     * 整改类型:1-即查即改,2-限期整改
     */
    private Byte rectifyType;
    /**
     * 整改内容说明
     */
    private String rectifyDesc;
 
    public Byte getRectifyType() {
        return rectifyType;
    }
 
    public void setRectifyType(Byte rectifyType) {
        this.rectifyType = rectifyType;
    }
 
    public String getRectifyDesc() {
        return rectifyDesc;
    }
 
    public void setRectifyDesc(String rectifyDesc) {
        this.rectifyDesc = rectifyDesc;
    }
 
    public Long getDangerManagerId() {
        return dangerManagerId;
    }
 
    public void setDangerManagerId(Long dangerManagerId) {
        this.dangerManagerId = dangerManagerId;
    }
 
    public Date getRectifyTime() {
        return rectifyTime;
    }
 
    public void setRectifyTime(Date rectifyTime) {
        this.rectifyTime = rectifyTime;
    }
 
    public Long getLiablePersonId() {
        return liablePersonId;
    }
 
    public void setLiablePersonId(Long liablePersonId) {
        this.liablePersonId = liablePersonId;
    }
}