wlzboy
2025-10-18 b46065a201c09ce69f111806f2bda4a5f476bc4e
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
package com.ruoyi.system.domain;
 
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
/**
 * 任务操作日志对象 sys_task_log
 * 
 * @author ruoyi
 * @date 2024-01-15
 */
public class SysTaskLog extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /** 日志ID */
    private Long logId;
 
    /** 任务ID */
    @Excel(name = "任务ID")
    private Long taskId;
 
    /** 操作类型 */
    @Excel(name = "操作类型", readConverterExp = "CREATE=创建,UPDATE=更新,ASSIGN=分配,STATUS_CHANGE=状态变更,DELETE=删除")
    private String operationType;
 
    /** 操作描述 */
    @Excel(name = "操作描述")
    private String operationDesc;
 
    /** 操作前值 */
    @Excel(name = "操作前值")
    private String oldValue;
 
    /** 操作后值 */
    @Excel(name = "操作后值")
    private String newValue;
 
    /** 操作人ID */
    @Excel(name = "操作人ID")
    private Long operatorId;
 
    /** 操作人姓名 */
    @Excel(name = "操作人姓名")
    private String operatorName;
 
    /** 操作时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "操作时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date operationTime;
 
    /** IP地址 */
    @Excel(name = "IP地址")
    private String ipAddress;
 
    /** 纬度 */
    @Excel(name = "纬度")
    private Double latitude;
 
    /** 经度 */
    @Excel(name = "经度")
    private Double longitude;
 
    /** 位置地址 */
    @Excel(name = "位置地址")
    private String locationAddress;
 
    /** 省份 */
    @Excel(name = "省份")
    private String locationProvince;
 
    /** 城市 */
    @Excel(name = "城市")
    private String locationCity;
 
    /** 区县 */
    @Excel(name = "区县")
    private String locationDistrict;
 
    /** GPS精度(米) */
    @Excel(name = "GPS精度")
    private Double gpsAccuracy;
 
    /** 海拔高度(米) */
    @Excel(name = "海拔高度")
    private Double altitude;
 
    /** 速度(米/秒) */
    @Excel(name = "速度")
    private Double speed;
 
    /** 方向角度(0-360) */
    @Excel(name = "方向角度")
    private Double heading;
 
    public void setLogId(Long logId) {
        this.logId = logId;
    }
 
    public Long getLogId() {
        return logId;
    }
 
    public void setTaskId(Long taskId) {
        this.taskId = taskId;
    }
 
    public Long getTaskId() {
        return taskId;
    }
 
    public void setOperationType(String operationType) {
        this.operationType = operationType;
    }
 
    public String getOperationType() {
        return operationType;
    }
 
    public void setOperationDesc(String operationDesc) {
        this.operationDesc = operationDesc;
    }
 
    public String getOperationDesc() {
        return operationDesc;
    }
 
    public void setOldValue(String oldValue) {
        this.oldValue = oldValue;
    }
 
    public String getOldValue() {
        return oldValue;
    }
 
    public void setNewValue(String newValue) {
        this.newValue = newValue;
    }
 
    public String getNewValue() {
        return newValue;
    }
 
    public void setOperatorId(Long operatorId) {
        this.operatorId = operatorId;
    }
 
    public Long getOperatorId() {
        return operatorId;
    }
 
    public void setOperatorName(String operatorName) {
        this.operatorName = operatorName;
    }
 
    public String getOperatorName() {
        return operatorName;
    }
 
    public void setOperationTime(Date operationTime) {
        this.operationTime = operationTime;
    }
 
    public Date getOperationTime() {
        return operationTime;
    }
 
    public void setIpAddress(String ipAddress) {
        this.ipAddress = ipAddress;
    }
 
    public String getIpAddress() {
        return ipAddress;
    }
 
    public void setLatitude(Double latitude) {
        this.latitude = latitude;
    }
 
    public Double getLatitude() {
        return latitude;
    }
 
    public void setLongitude(Double longitude) {
        this.longitude = longitude;
    }
 
    public Double getLongitude() {
        return longitude;
    }
 
    public void setLocationAddress(String locationAddress) {
        this.locationAddress = locationAddress;
    }
 
    public String getLocationAddress() {
        return locationAddress;
    }
 
    public void setLocationProvince(String locationProvince) {
        this.locationProvince = locationProvince;
    }
 
    public String getLocationProvince() {
        return locationProvince;
    }
 
    public void setLocationCity(String locationCity) {
        this.locationCity = locationCity;
    }
 
    public String getLocationCity() {
        return locationCity;
    }
 
    public void setLocationDistrict(String locationDistrict) {
        this.locationDistrict = locationDistrict;
    }
 
    public String getLocationDistrict() {
        return locationDistrict;
    }
 
    public void setGpsAccuracy(Double gpsAccuracy) {
        this.gpsAccuracy = gpsAccuracy;
    }
 
    public Double getGpsAccuracy() {
        return gpsAccuracy;
    }
 
    public void setAltitude(Double altitude) {
        this.altitude = altitude;
    }
 
    public Double getAltitude() {
        return altitude;
    }
 
    public void setSpeed(Double speed) {
        this.speed = speed;
    }
 
    public Double getSpeed() {
        return speed;
    }
 
    public void setHeading(Double heading) {
        this.heading = heading;
    }
 
    public Double getHeading() {
        return heading;
    }
 
    @Override
    public String toString() {
        return "SysTaskLog{" +
                "logId=" + logId +
                ", taskId=" + taskId +
                ", operationType='" + operationType + '\'' +
                ", operationDesc='" + operationDesc + '\'' +
                ", oldValue='" + oldValue + '\'' +
                ", newValue='" + newValue + '\'' +
                ", operatorId=" + operatorId +
                ", operatorName='" + operatorName + '\'' +
                ", operationTime=" + operationTime +
                ", ipAddress='" + ipAddress + '\'' +
                ", latitude=" + latitude +
                ", longitude=" + longitude +
                ", locationAddress='" + locationAddress + '\'' +
                ", locationProvince='" + locationProvince + '\'' +
                ", locationCity='" + locationCity + '\'' +
                ", locationDistrict='" + locationDistrict + '\'' +
                ", gpsAccuracy=" + gpsAccuracy +
                ", altitude=" + altitude +
                ", speed=" + speed +
                ", heading=" + heading +
                '}';
    }
}