xuhy
2023-08-11 1172de622b5e615677918d4fa0f02a9b2766171c
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
package com.stylefeng.guns.modular.system.warpper;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
@ApiModel
public class SmartScreenOrderVo {
    @ApiModelProperty("订单id")
    private Integer id;
    @ApiModelProperty("乘客电话号码")
    private String userPhone;
    @ApiModelProperty("下单时间")
    private String insertTime;
    @ApiModelProperty("车牌号")
    private String carLicensePlate;
    @ApiModelProperty("司机手机号")
    private String driverPhone;
    @ApiModelProperty("距离(公里)")
    private Double distance;
    @ApiModelProperty("时间(分钟)")
    private Integer minute;
    @ApiModelProperty("订单状态(1=待接单,2=待出发,3=待到达预约地点,4=待乘客上车)")
    private Integer status;
    @ApiModelProperty("司机到达预约点时间")
    private String arrivalTime;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getUserPhone() {
        return userPhone;
    }
 
    public void setUserPhone(String userPhone) {
        this.userPhone = userPhone;
    }
 
    public String getInsertTime() {
        return insertTime;
    }
 
    public void setInsertTime(String insertTime) {
        this.insertTime = insertTime;
    }
 
    public String getCarLicensePlate() {
        return carLicensePlate;
    }
 
    public void setCarLicensePlate(String carLicensePlate) {
        this.carLicensePlate = carLicensePlate;
    }
 
    public String getDriverPhone() {
        return driverPhone;
    }
 
    public void setDriverPhone(String driverPhone) {
        this.driverPhone = driverPhone;
    }
 
    public Double getDistance() {
        return distance;
    }
 
    public void setDistance(Double distance) {
        this.distance = distance;
    }
 
    public Integer getMinute() {
        return minute;
    }
 
    public void setMinute(Integer minute) {
        this.minute = minute;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
 
    public String getArrivalTime() {
        return arrivalTime;
    }
 
    public void setArrivalTime(String arrivalTime) {
        this.arrivalTime = arrivalTime;
    }
}