wzp
2025-05-01 afbf429242dbab320dea6e986b9ca3d9ccc01296
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
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
package com.ruoyi.system.domain;
 
import java.math.BigDecimal;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
/**
 * orders对象 tb_orders
 * 
 * @author wzp
 * @date 2025-05-01
 */
public class TbOrders extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 广交的订单 ID,系统唯一创建订单 */
    private Long OrderID;
 
    /** 联系人 */
    @Excel(name = "联系人")
    private String LinkPerson;
 
    /** 联系电话 */
    @Excel(name = "联系电话")
    private String LinkTel;
 
    /** 受理电话,来电电话 */
    @Excel(name = "受理电话,来电电话")
    private String AlarmTel;
 
    /** 患者姓名 */
    @Excel(name = "患者姓名")
    private String PatientName;
 
    /** 患者性别 */
    @Excel(name = "患者性别")
    private Integer Sex;
 
    /** 患者年龄 */
    @Excel(name = "患者年龄")
    private String Age;
 
    /** 患者体重 */
    @Excel(name = "患者体重")
    private String Kg;
 
    /** 患者有无意识 */
    @Excel(name = "患者有无意识")
    private String Sense;
 
    /** 现场地址 */
    @Excel(name = "现场地址")
    private String LocalAddress;
 
    /** 现场地址经度(目前是 gcj02 坐标系) */
    @Excel(name = "现场地址经度", readConverterExp = "目=前是,g=cj02,坐=标系")
    private Long LocalLongitude;
 
    /** 现场地址纬度 */
    @Excel(name = "现场地址纬度")
    private Long LocalLatitude;
 
    /** 现场所在省 */
    @Excel(name = "现场所在省")
    private String LocalProvince;
 
    /** 现场所在城市 */
    @Excel(name = "现场所在城市")
    private String LocalCity;
 
    /** 现场所在区 */
    @Excel(name = "现场所在区")
    private String LocalDistrict;
 
    /** 送往地址 */
    @Excel(name = "送往地址")
    private String SendAddress;
 
    /** 送往经度 */
    @Excel(name = "送往经度")
    private Long SendLongitude;
 
    /** 送往纬度 */
    @Excel(name = "送往纬度")
    private Long SendLatitude;
 
    /** 送往所在省 */
    @Excel(name = "送往所在省")
    private String SendProvince;
 
    /** 送往所在城市 */
    @Excel(name = "送往所在城市")
    private String SendCity;
 
    /** 送往所在区 */
    @Excel(name = "送往所在区")
    private String SendDistrict;
 
    /** 预估金额 */
    @Excel(name = "预估金额")
    private BigDecimal BookingPrice;
 
    /** 预约时间(时间类型,精确到小时) */
    @Excel(name = "预约时间", readConverterExp = "时=间类型,精确到小时")
    private Date BookingDate;
 
    /** 病人情况 */
    @Excel(name = "病人情况")
    private String Complaint;
 
    /** 人数 */
    @Excel(name = "人数")
    private Long PatientCount;
 
    /** 预估预约公里 */
    @Excel(name = "预估预约公里")
    private Long BookingKM;
 
    /** 普通护送,监护护送(可按照第三方的字典新增或赋值) */
    @Excel(name = "普通护送,监护护送", readConverterExp = "可=按照第三方的字典新增或赋值")
    private Long EscortCode;
 
    /** 步梯或电梯 */
    @Excel(name = "步梯或电梯")
    private Long LiftingCode;
 
    /** 楼层 */
    @Excel(name = "楼层")
    private Long LiftingFloor;
 
    /** 监护,重症(可按照第三方的字典新增或赋值) */
    @Excel(name = "监护,重症(可按照第三方的字典新增或赋值)")
    private Long RequirementCode;
 
    /** 转运类型(市内,市外,省外等,可按照第三方的字典新增或赋值) */
    @Excel(name = "转运类型", readConverterExp = "市=内,市外,省外等,可按照第三方的字典新增或赋值")
    private Long TypeCode;
 
    /** 第三方调用接口返回结果,1-成功,2-失败 */
    @Excel(name = "第三方调用接口返回结果,1-成功,2-失败")
    private Integer ThirdPartyResult;
 
    /** 第三方服务ID */
    @Excel(name = "第三方服务ID")
    private String ServiceOrdID;
 
    /** 第三方服务单号 */
    @Excel(name = "第三方服务单号")
    private String ServiceOrdNo;
 
    private String Remark;
 
    private Date CreateTime;
 
    private Date UpdateTime;
 
    public void setOrderID(Long OrderID) 
    {
        this.OrderID = OrderID;
    }
 
    public Long getOrderID() 
    {
        return OrderID;
    }
 
    public void setLinkPerson(String LinkPerson) 
    {
        this.LinkPerson = LinkPerson;
    }
 
    public String getLinkPerson() 
    {
        return LinkPerson;
    }
 
    public void setLinkTel(String LinkTel) 
    {
        this.LinkTel = LinkTel;
    }
 
    public String getLinkTel() 
    {
        return LinkTel;
    }
 
    public void setAlarmTel(String AlarmTel) 
    {
        this.AlarmTel = AlarmTel;
    }
 
    public String getAlarmTel() 
    {
        return AlarmTel;
    }
 
    public void setPatientName(String PatientName) 
    {
        this.PatientName = PatientName;
    }
 
    public String getPatientName() 
    {
        return PatientName;
    }
 
    public void setSex(Integer Sex) 
    {
        this.Sex = Sex;
    }
 
    public Integer getSex() 
    {
        return Sex;
    }
 
    public void setAge(String Age) 
    {
        this.Age = Age;
    }
 
    public String getAge() 
    {
        return Age;
    }
 
    public void setKg(String Kg) 
    {
        this.Kg = Kg;
    }
 
    public String getKg() 
    {
        return Kg;
    }
 
    public void setSense(String Sense) 
    {
        this.Sense = Sense;
    }
 
    public String getSense() 
    {
        return Sense;
    }
 
    public void setLocalAddress(String LocalAddress) 
    {
        this.LocalAddress = LocalAddress;
    }
 
    public String getLocalAddress() 
    {
        return LocalAddress;
    }
 
    public void setLocalLongitude(Long LocalLongitude) 
    {
        this.LocalLongitude = LocalLongitude;
    }
 
    public Long getLocalLongitude() 
    {
        return LocalLongitude;
    }
 
    public void setLocalLatitude(Long LocalLatitude) 
    {
        this.LocalLatitude = LocalLatitude;
    }
 
    public Long getLocalLatitude() 
    {
        return LocalLatitude;
    }
 
    public void setLocalProvince(String LocalProvince) 
    {
        this.LocalProvince = LocalProvince;
    }
 
    public String getLocalProvince() 
    {
        return LocalProvince;
    }
 
    public void setLocalCity(String LocalCity) 
    {
        this.LocalCity = LocalCity;
    }
 
    public String getLocalCity() 
    {
        return LocalCity;
    }
 
    public void setLocalDistrict(String LocalDistrict) 
    {
        this.LocalDistrict = LocalDistrict;
    }
 
    public String getLocalDistrict() 
    {
        return LocalDistrict;
    }
 
    public void setSendAddress(String SendAddress) 
    {
        this.SendAddress = SendAddress;
    }
 
    public String getSendAddress() 
    {
        return SendAddress;
    }
 
    public void setSendLongitude(Long SendLongitude) 
    {
        this.SendLongitude = SendLongitude;
    }
 
    public Long getSendLongitude() 
    {
        return SendLongitude;
    }
 
    public void setSendLatitude(Long SendLatitude) 
    {
        this.SendLatitude = SendLatitude;
    }
 
    public Long getSendLatitude() 
    {
        return SendLatitude;
    }
 
    public void setSendProvince(String SendProvince) 
    {
        this.SendProvince = SendProvince;
    }
 
    public String getSendProvince() 
    {
        return SendProvince;
    }
 
    public void setSendCity(String SendCity) 
    {
        this.SendCity = SendCity;
    }
 
    public String getSendCity() 
    {
        return SendCity;
    }
 
    public void setSendDistrict(String SendDistrict) 
    {
        this.SendDistrict = SendDistrict;
    }
 
    public String getSendDistrict() 
    {
        return SendDistrict;
    }
 
    public void setBookingPrice(BigDecimal BookingPrice) 
    {
        this.BookingPrice = BookingPrice;
    }
 
    public BigDecimal getBookingPrice() 
    {
        return BookingPrice;
    }
 
    public void setBookingDate(Date BookingDate) 
    {
        this.BookingDate = BookingDate;
    }
 
    public Date getBookingDate() 
    {
        return BookingDate;
    }
 
    public void setComplaint(String Complaint) 
    {
        this.Complaint = Complaint;
    }
 
    public String getComplaint() 
    {
        return Complaint;
    }
 
    public void setPatientCount(Long PatientCount) 
    {
        this.PatientCount = PatientCount;
    }
 
    public Long getPatientCount() 
    {
        return PatientCount;
    }
 
    public void setBookingKM(Long BookingKM) 
    {
        this.BookingKM = BookingKM;
    }
 
    public Long getBookingKM() 
    {
        return BookingKM;
    }
 
    public void setEscortCode(Long EscortCode) 
    {
        this.EscortCode = EscortCode;
    }
 
    public Long getEscortCode() 
    {
        return EscortCode;
    }
 
    public void setLiftingCode(Long LiftingCode) 
    {
        this.LiftingCode = LiftingCode;
    }
 
    public Long getLiftingCode() 
    {
        return LiftingCode;
    }
 
    public void setLiftingFloor(Long LiftingFloor) 
    {
        this.LiftingFloor = LiftingFloor;
    }
 
    public Long getLiftingFloor() 
    {
        return LiftingFloor;
    }
 
    public void setRequirementCode(Long RequirementCode) 
    {
        this.RequirementCode = RequirementCode;
    }
 
    public Long getRequirementCode() 
    {
        return RequirementCode;
    }
 
    public void setTypeCode(Long TypeCode) 
    {
        this.TypeCode = TypeCode;
    }
 
    public Long getTypeCode() 
    {
        return TypeCode;
    }
 
    public void setThirdPartyResult(Integer ThirdPartyResult) 
    {
        this.ThirdPartyResult = ThirdPartyResult;
    }
 
    public Integer getThirdPartyResult() 
    {
        return ThirdPartyResult;
    }
 
    public void setServiceOrdID(String ServiceOrdID) 
    {
        this.ServiceOrdID = ServiceOrdID;
    }
 
    public String getServiceOrdID() 
    {
        return ServiceOrdID;
    }
 
    public void setServiceOrdNo(String ServiceOrdNo) 
    {
        this.ServiceOrdNo = ServiceOrdNo;
    }
 
    public String getServiceOrdNo() 
    {
        return ServiceOrdNo;
    }
 
    public String getRemark(){return Remark;}
 
    public void setRemark(String Remark){this.Remark =Remark;}
 
    public Date getCreateTime(){return CreateTime;}
 
    public void setCreateTime(Date CreateTime){this.CreateTime =CreateTime;}
 
    public Date getUpdateTime(){return UpdateTime;}
 
    public void setUpdateTime(Date UpdateTime){this.UpdateTime =UpdateTime;}
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("OrderID", getOrderID())
            .append("LinkPerson", getLinkPerson())
            .append("LinkTel", getLinkTel())
            .append("AlarmTel", getAlarmTel())
            .append("PatientName", getPatientName())
            .append("Sex", getSex())
            .append("Age", getAge())
            .append("Kg", getKg())
            .append("Sense", getSense())
            .append("LocalAddress", getLocalAddress())
            .append("LocalLongitude", getLocalLongitude())
            .append("LocalLatitude", getLocalLatitude())
            .append("LocalProvince", getLocalProvince())
            .append("LocalCity", getLocalCity())
            .append("LocalDistrict", getLocalDistrict())
            .append("SendAddress", getSendAddress())
            .append("SendLongitude", getSendLongitude())
            .append("SendLatitude", getSendLatitude())
            .append("SendProvince", getSendProvince())
            .append("SendCity", getSendCity())
            .append("SendDistrict", getSendDistrict())
            .append("BookingPrice", getBookingPrice())
            .append("BookingDate", getBookingDate())
            .append("Remark", getRemark())
            .append("Complaint", getComplaint())
            .append("PatientCount", getPatientCount())
            .append("BookingKM", getBookingKM())
            .append("EscortCode", getEscortCode())
            .append("LiftingCode", getLiftingCode())
            .append("LiftingFloor", getLiftingFloor())
            .append("RequirementCode", getRequirementCode())
            .append("TypeCode", getTypeCode())
            .append("ThirdPartyResult", getThirdPartyResult())
            .append("ServiceOrdID", getServiceOrdID())
            .append("ServiceOrdNo", getServiceOrdNo())
            .append("CreateTime", getCreateTime())
            .append("UpdateTime", getUpdateTime())
            .toString();
    }
}