郑永安
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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
package com.gk.hotwork.Domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
import java.util.Date;
import java.util.List;
 
@TableName("taskreview")
public class TaskReview {
 
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
 
    @TableId(type = IdType.AUTO)
    private Long id;
 
    private Long taskId;
 
    /** 任务编号  taskcode **/
    private String taskcode;
 
    /** 审批人  reviewer **/
    private String reviewer;
 
    /** 审批时间  reviewat **/
    private Date reviewat;
 
    /** 审批意见(0:否;1:是)  isagree **/
    private Byte isagree;
 
    /** 审批描述  opinion **/
    private String opinion;
 
    /** 审批级别  level **/
    private String level;
 
    /** 现场图片路径可多个,逗号分隔  scenepic **/
    private String scenepic;
 
    /** 签名图片路径  autograph **/
    private String autograph;
 
    /** 经度  longitude **/
    private String longitude;
 
    /** 纬度  latitude **/
    private String latitude;
 
    /** 创建时间  createdat **/
    private Date createdat;
 
    /** 创建人  createdby **/
    private String createdby;
 
    /** 标记  flag **/
    private Byte flag;
 
    @TableField(exist = false)
    private List<String> pictures;
 
    /**     id   **/
    public Long getId() {
        return id;
    }
 
    /**     id   **/
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getTaskId() {
        return taskId;
    }
 
    public void setTaskId(Long taskId) {
        this.taskId = taskId;
    }
 
    /**   任务编号  taskcode   **/
    public String getTaskcode() {
        return taskcode;
    }
 
    /**   任务编号  taskcode   **/
    public void setTaskcode(String taskcode) {
        this.taskcode = taskcode == null ? null : taskcode.trim();
    }
 
    /**   审批人  reviewer   **/
    public String getReviewer() {
        return reviewer;
    }
 
    /**   审批人  reviewer   **/
    public void setReviewer(String reviewer) {
        this.reviewer = reviewer == null ? null : reviewer.trim();
    }
 
    /**   审批时间  reviewat   **/
    public Date getReviewat() {
        return reviewat;
    }
 
    /**   审批时间  reviewat   **/
    public void setReviewat(Date reviewat) {
        this.reviewat = reviewat;
    }
 
    /**   审批意见(0:否;1:是)  isagree   **/
    public Byte getIsagree() {
        return isagree;
    }
 
    /**   审批意见(0:否;1:是)  isagree   **/
    public void setIsagree(Byte isagree) {
        this.isagree = isagree;
    }
 
    /**   审批描述  opinion   **/
    public String getOpinion() {
        return opinion;
    }
 
    /**   审批描述  opinion   **/
    public void setOpinion(String opinion) {
        this.opinion = opinion == null ? null : opinion.trim();
    }
 
    /**   审批级别  level   **/
    public String getLevel() {
        return level;
    }
 
    /**   审批级别  level   **/
    public void setLevel(String level) {
        this.level = level == null ? null : level.trim();
    }
 
    /**   现场图片路径可多个,逗号分隔  scenepic   **/
    public String getScenepic() {
        return scenepic;
    }
 
    /**   现场图片路径可多个,逗号分隔  scenepic   **/
    public void setScenepic(String scenepic) {
        this.scenepic = scenepic == null ? null : scenepic.trim();
    }
 
    /**   签名图片路径  autograph   **/
    public String getAutograph() {
        return autograph;
    }
 
    /**   签名图片路径  autograph   **/
    public void setAutograph(String autograph) {
        this.autograph = autograph == null ? null : autograph.trim();
    }
 
    /**   经度  longitude   **/
    public String getLongitude() {
        return longitude;
    }
 
    /**   经度  longitude   **/
    public void setLongitude(String longitude) {
        this.longitude = longitude == null ? null : longitude.trim();
    }
 
    /**   纬度  latitude   **/
    public String getLatitude() {
        return latitude;
    }
 
    /**   纬度  latitude   **/
    public void setLatitude(String latitude) {
        this.latitude = latitude == null ? null : latitude.trim();
    }
 
    /**   创建时间  createdat   **/
    public Date getCreatedat() {
        return createdat;
    }
 
    /**   创建时间  createdat   **/
    public void setCreatedat(Date createdat) {
        this.createdat = createdat;
    }
 
    /**   创建人  createdby   **/
    public String getCreatedby() {
        return createdby;
    }
 
    /**   创建人  createdby   **/
    public void setCreatedby(String createdby) {
        this.createdby = createdby == null ? null : createdby.trim();
    }
 
    /**   标记  flag   **/
    public Byte getFlag() {
        return flag;
    }
 
    /**   标记  flag   **/
    public void setFlag(Byte flag) {
        this.flag = flag;
    }
 
    public List<String> getPictures() {
        return pictures;
    }
 
    public void setPictures(List<String> pictures) {
        this.pictures = pictures;
    }
}