16639036659
2023-09-19 c07615f4a30c29621979b9a0f6022ada684af6cc
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
package com.gk.hotwork.doublePrevention.entity.dto.req;
 
import com.fasterxml.jackson.annotation.JsonFormat;
 
import java.math.BigDecimal;
import java.util.Date;
 
public class PreventDangerRectifyUpdateReqDTO {
 
    /**
     * 主键
     */
    private Long id;
    /**
     * 隐患管理单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;
    /**
     * 整改资金
     */
    private BigDecimal cost;
    /**
     * 延期原因
     */
    private String timeOutDesc;
 
    public String getTimeOutDesc() {
        return timeOutDesc;
    }
 
    public void setTimeOutDesc(String timeOutDesc) {
        this.timeOutDesc = timeOutDesc;
    }
 
    public BigDecimal getCost() {
        return cost;
    }
 
    public void setCost(BigDecimal cost) {
        this.cost = cost;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    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;
    }
 
    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;
    }
}