wlzboy
2025-11-22 fd047fa7234dc11643dab8ecbf38e8d7a8ba0854
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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
package com.ruoyi.system.domain.vo;
 
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonFormat;
 
/**
 * 任务更新对象
 * 
 * @author ruoyi
 * @date 2024-01-15
 */
public class TaskUpdateVO {
    
    /** 任务ID */
    private Long taskId;
 
    /** 任务描述 */
    private String taskDescription;
 
    /** 出发地址 */
    private String departureAddress;
 
    /** 目的地址 */
    private String destinationAddress;
 
    /** 计划开始时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date plannedStartTime;
 
    /** 计划结束时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date plannedEndTime;
 
    /** 执行人ID */
    private Long assigneeId;
 
    /** 备注 */
    private String remark;
 
    /** 出发地经度 */
    private BigDecimal departureLongitude;
 
    /** 出发地纬度 */
    private BigDecimal departureLatitude;
 
    /** 目的地经度 */
    private BigDecimal destinationLongitude;
 
    /** 目的地纬度 */
    private BigDecimal destinationLatitude;
 
    /** 任务类型 */
    private String taskType;
 
    /** 部门ID */
    private Long deptId;
 
    /** 车辆ID列表 */
    private List<Long> vehicleIds;
 
    /** 病情ID列表(用于同步调度单的OrdICD_ID参数) */
    private List<Long> diseaseIds;
 
    /** 急救转运任务扩展信息 */
    private EmergencyInfoVO emergencyInfo;
 
    public Long getTaskId() {
        return taskId;
    }
 
    public void setTaskId(Long taskId) {
        this.taskId = taskId;
    }
 
    public String getTaskDescription() {
        return taskDescription;
    }
 
    public void setTaskDescription(String taskDescription) {
        this.taskDescription = taskDescription;
    }
 
    public String getDepartureAddress() {
        return departureAddress;
    }
 
    public void setDepartureAddress(String departureAddress) {
        this.departureAddress = departureAddress;
    }
 
    public String getDestinationAddress() {
        return destinationAddress;
    }
 
    public void setDestinationAddress(String destinationAddress) {
        this.destinationAddress = destinationAddress;
    }
 
    public Date getPlannedStartTime() {
        return plannedStartTime;
    }
 
    public void setPlannedStartTime(Date plannedStartTime) {
        this.plannedStartTime = plannedStartTime;
    }
 
    public Date getPlannedEndTime() {
        return plannedEndTime;
    }
 
    public void setPlannedEndTime(Date plannedEndTime) {
        this.plannedEndTime = plannedEndTime;
    }
 
    public Long getAssigneeId() {
        return assigneeId;
    }
 
    public void setAssigneeId(Long assigneeId) {
        this.assigneeId = assigneeId;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public BigDecimal getDepartureLongitude() {
        return departureLongitude;
    }
 
    public void setDepartureLongitude(BigDecimal departureLongitude) {
        this.departureLongitude = departureLongitude;
    }
 
    public BigDecimal getDepartureLatitude() {
        return departureLatitude;
    }
 
    public void setDepartureLatitude(BigDecimal departureLatitude) {
        this.departureLatitude = departureLatitude;
    }
 
    public BigDecimal getDestinationLongitude() {
        return destinationLongitude;
    }
 
    public void setDestinationLongitude(BigDecimal destinationLongitude) {
        this.destinationLongitude = destinationLongitude;
    }
 
    public BigDecimal getDestinationLatitude() {
        return destinationLatitude;
    }
 
    public void setDestinationLatitude(BigDecimal destinationLatitude) {
        this.destinationLatitude = destinationLatitude;
    }
 
    public String getTaskType() {
        return taskType;
    }
 
    public void setTaskType(String taskType) {
        this.taskType = taskType;
    }
 
    public Long getDeptId() {
        return deptId;
    }
 
    public void setDeptId(Long deptId) {
        this.deptId = deptId;
    }
 
    public List<Long> getVehicleIds() {
        return vehicleIds;
    }
 
    public void setVehicleIds(List<Long> vehicleIds) {
        this.vehicleIds = vehicleIds;
    }
 
    public List<Long> getDiseaseIds() {
        return diseaseIds;
    }
 
    public void setDiseaseIds(List<Long> diseaseIds) {
        this.diseaseIds = diseaseIds;
    }
 
    public EmergencyInfoVO getEmergencyInfo() {
        return emergencyInfo;
    }
 
    public void setEmergencyInfo(EmergencyInfoVO emergencyInfo) {
        this.emergencyInfo = emergencyInfo;
    }
 
    /**
     * 急救转运任务扩展信息内部类
     */
    public static class EmergencyInfoVO {
        /** 患者联系人 */
        private String patientContact;
        
        /** 患者联系电话 */
        private String patientPhone;
        
        /** 患者姓名 */
        private String patientName;
        
        /** 患者性别 */
        private String patientGender;
        
        /** 患者身份证号 */
        private String patientIdCard;
        
        /** 患者病情描述 */
        private String patientCondition;
        
        /** 转出医院ID */
        private Long hospitalOutId;
        
        /** 转出医院名称 */
        private String hospitalOutName;
        
        /** 转出医院科室 */
        private String hospitalOutDepartment;
        
        /** 转出医院科室ID */
        private String hospitalOutDepartmentId;
        
        /** 转出医院床号 */
        private String hospitalOutBedNumber;
        
        /** 转出医院地址 */
        private String hospitalOutAddress;
        
        /** 转出医院经度 */
        private BigDecimal hospitalOutLongitude;
        
        /** 转出医院纬度 */
        private BigDecimal hospitalOutLatitude;
        
        /** 转入医院ID */
        private Long hospitalInId;
        
        /** 转入医院名称 */
        private String hospitalInName;
        
        /** 转入医院科室 */
        private String hospitalInDepartment;
        
        /** 转入医院科室ID */
        private String hospitalInDepartmentId;
        
        /** 转入医院床号 */
        private String hospitalInBedNumber;
        
        /** 转入医院地址 */
        private String hospitalInAddress;
        
        /** 转入医院经度 */
        private BigDecimal hospitalInLongitude;
        
        /** 转入医院纬度 */
        private BigDecimal hospitalInLatitude;
        
        /** 转运公里数 */
        private BigDecimal transferDistance;
        
        /** 转运费用 */
        private BigDecimal transferPrice;
 
        // Getters and Setters
        public String getPatientContact() {
            return patientContact;
        }
 
        public void setPatientContact(String patientContact) {
            this.patientContact = patientContact;
        }
 
        public String getPatientPhone() {
            return patientPhone;
        }
 
        public void setPatientPhone(String patientPhone) {
            this.patientPhone = patientPhone;
        }
 
        public String getPatientName() {
            return patientName;
        }
 
        public void setPatientName(String patientName) {
            this.patientName = patientName;
        }
 
        public String getPatientGender() {
            return patientGender;
        }
 
        public void setPatientGender(String patientGender) {
            this.patientGender = patientGender;
        }
 
        public String getPatientIdCard() {
            return patientIdCard;
        }
 
        public void setPatientIdCard(String patientIdCard) {
            this.patientIdCard = patientIdCard;
        }
 
        public String getPatientCondition() {
            return patientCondition;
        }
 
        public void setPatientCondition(String patientCondition) {
            this.patientCondition = patientCondition;
        }
 
        public Long getHospitalOutId() {
            return hospitalOutId;
        }
 
        public void setHospitalOutId(Long hospitalOutId) {
            this.hospitalOutId = hospitalOutId;
        }
 
        public String getHospitalOutName() {
            return hospitalOutName;
        }
 
        public void setHospitalOutName(String hospitalOutName) {
            this.hospitalOutName = hospitalOutName;
        }
 
        public String getHospitalOutDepartment() {
            return hospitalOutDepartment;
        }
 
        public void setHospitalOutDepartment(String hospitalOutDepartment) {
            this.hospitalOutDepartment = hospitalOutDepartment;
        }
 
        public String getHospitalOutDepartmentId() {
            return hospitalOutDepartmentId;
        }
 
        public void setHospitalOutDepartmentId(String hospitalOutDepartmentId) {
            this.hospitalOutDepartmentId = hospitalOutDepartmentId;
        }
 
        public String getHospitalOutBedNumber() {
            return hospitalOutBedNumber;
        }
 
        public void setHospitalOutBedNumber(String hospitalOutBedNumber) {
            this.hospitalOutBedNumber = hospitalOutBedNumber;
        }
 
        public String getHospitalOutAddress() {
            return hospitalOutAddress;
        }
 
        public void setHospitalOutAddress(String hospitalOutAddress) {
            this.hospitalOutAddress = hospitalOutAddress;
        }
 
        public BigDecimal getHospitalOutLongitude() {
            return hospitalOutLongitude;
        }
 
        public void setHospitalOutLongitude(BigDecimal hospitalOutLongitude) {
            this.hospitalOutLongitude = hospitalOutLongitude;
        }
 
        public BigDecimal getHospitalOutLatitude() {
            return hospitalOutLatitude;
        }
 
        public void setHospitalOutLatitude(BigDecimal hospitalOutLatitude) {
            this.hospitalOutLatitude = hospitalOutLatitude;
        }
 
        public Long getHospitalInId() {
            return hospitalInId;
        }
 
        public void setHospitalInId(Long hospitalInId) {
            this.hospitalInId = hospitalInId;
        }
 
        public String getHospitalInName() {
            return hospitalInName;
        }
 
        public void setHospitalInName(String hospitalInName) {
            this.hospitalInName = hospitalInName;
        }
 
        public String getHospitalInDepartment() {
            return hospitalInDepartment;
        }
 
        public void setHospitalInDepartment(String hospitalInDepartment) {
            this.hospitalInDepartment = hospitalInDepartment;
        }
 
        public String getHospitalInDepartmentId() {
            return hospitalInDepartmentId;
        }
 
        public void setHospitalInDepartmentId(String hospitalInDepartmentId) {
            this.hospitalInDepartmentId = hospitalInDepartmentId;
        }
 
        public String getHospitalInBedNumber() {
            return hospitalInBedNumber;
        }
 
        public void setHospitalInBedNumber(String hospitalInBedNumber) {
            this.hospitalInBedNumber = hospitalInBedNumber;
        }
 
        public String getHospitalInAddress() {
            return hospitalInAddress;
        }
 
        public void setHospitalInAddress(String hospitalInAddress) {
            this.hospitalInAddress = hospitalInAddress;
        }
 
        public BigDecimal getHospitalInLongitude() {
            return hospitalInLongitude;
        }
 
        public void setHospitalInLongitude(BigDecimal hospitalInLongitude) {
            this.hospitalInLongitude = hospitalInLongitude;
        }
 
        public BigDecimal getHospitalInLatitude() {
            return hospitalInLatitude;
        }
 
        public void setHospitalInLatitude(BigDecimal hospitalInLatitude) {
            this.hospitalInLatitude = hospitalInLatitude;
        }
 
        public BigDecimal getTransferDistance() {
            return transferDistance;
        }
 
        public void setTransferDistance(BigDecimal transferDistance) {
            this.transferDistance = transferDistance;
        }
 
        public BigDecimal getTransferPrice() {
            return transferPrice;
        }
 
        public void setTransferPrice(BigDecimal transferPrice) {
            this.transferPrice = transferPrice;
        }
    }
}