郑永安
2023-06-19 7a6abd05683528032687c75e80e0bd2030a3e46c
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
108
109
110
111
package com.gkhy.safePlatform.specialWork.model.query.db;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
public class WorkPageDBQuery implements Serializable {
 
    private static final long serialVersionUID = 6706884427846117487L;
 
    private String workPermitNo;
 
    private LocalDateTime startTime;
 
    private LocalDateTime endTime;
 
    private Byte workStatus;
 
    private Byte acceptStatus;
 
    private Byte workAnalysisStatus;
 
    private Long depId;
 
    private Byte workType;
 
    private Byte workLevel;
    // 作业部门
    private Long workDepId;
 
 
    public String getWorkPermitNo() {
        return workPermitNo;
    }
 
    public void setWorkPermitNo(String workPermitNo) {
        this.workPermitNo = workPermitNo;
    }
 
    public LocalDateTime getStartTime() {
        return startTime;
    }
 
    public void setStartTime(LocalDateTime startTime) {
        this.startTime = startTime;
    }
 
    public LocalDateTime getEndTime() {
        return endTime;
    }
 
    public void setEndTime(LocalDateTime endTime) {
        this.endTime = endTime;
    }
 
    public Byte getWorkStatus() {
        return workStatus;
    }
 
    public void setWorkStatus(Byte workStatus) {
        this.workStatus = workStatus;
    }
 
    public Byte getAcceptStatus() {
        return acceptStatus;
    }
 
    public void setAcceptStatus(Byte acceptStatus) {
        this.acceptStatus = acceptStatus;
    }
 
 
    public Long getDepId() {
        return depId;
    }
 
    public void setDepId(Long depId) {
        this.depId = depId;
    }
 
    public Byte getWorkAnalysisStatus() {
        return workAnalysisStatus;
    }
 
    public void setWorkAnalysisStatus(Byte workAnalysisStatus) {
        this.workAnalysisStatus = workAnalysisStatus;
    }
 
    public Byte getWorkType() {
        return workType;
    }
 
    public void setWorkType(Byte workType) {
        this.workType = workType;
    }
 
    public Long getWorkDepId() {
        return workDepId;
    }
 
    public void setWorkDepId(Long workDepId) {
        this.workDepId = workDepId;
    }
 
    public Byte getWorkLevel() {
        return workLevel;
    }
 
    public void setWorkLevel(Byte workLevel) {
        this.workLevel = workLevel;
    }
}