wlzboy
1 天以前 08f95b2f159b56fa3bd4f4b348855989de8aa456
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
package com.ruoyi.system.domain;
 
import java.math.BigDecimal;
import com.ruoyi.common.core.domain.BaseEntity;
 
/**
 * 福祉车任务扩展信息对象 sys_task_welfare
 * 
 * @author ruoyi
 * @date 2024-01-16
 */
public class SysTaskWelfare extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /** 主键ID */
    private Long id;
 
    /** 任务ID */
    private Long taskId;
 
    /** 乘客联系人 */
    private String passengerContact;
 
    /** 乘客联系电话 */
    private String passengerPhone;
 
    /** 乘客姓名 */
    private String passengerName;
 
    /** 乘客年龄 */
    private Integer passengerAge;
 
    /** 乘客性别 */
    private String passengerGender;
 
    /** 乘客身份证号 */
    private String passengerIdCard;
 
    /** 特殊需求描述 */
    private String specialNeeds;
 
    /** 服务类型 */
    private String serviceType;
 
    /** 接送地址 */
    private String pickupAddress;
 
    /** 接送地址经度 */
    private BigDecimal pickupLongitude;
 
    /** 接送地址纬度 */
    private BigDecimal pickupLatitude;
 
    /** 目的地址 */
    private String destinationAddress;
 
    /** 目的地址经度 */
    private BigDecimal destinationLongitude;
 
    /** 目的地址纬度 */
    private BigDecimal destinationLatitude;
 
    /** 服务公里数 */
    private BigDecimal serviceDistance;
 
    /** 服务费用 */
    private BigDecimal servicePrice;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getTaskId() {
        return taskId;
    }
 
    public void setTaskId(Long taskId) {
        this.taskId = taskId;
    }
 
    public String getPassengerContact() {
        return passengerContact;
    }
 
    public void setPassengerContact(String passengerContact) {
        this.passengerContact = passengerContact;
    }
 
    public String getPassengerPhone() {
        return passengerPhone;
    }
 
    public void setPassengerPhone(String passengerPhone) {
        this.passengerPhone = passengerPhone;
    }
 
    public String getPassengerName() {
        return passengerName;
    }
 
    public void setPassengerName(String passengerName) {
        this.passengerName = passengerName;
    }
 
    public Integer getPassengerAge() {
        return passengerAge;
    }
 
    public void setPassengerAge(Integer passengerAge) {
        this.passengerAge = passengerAge;
    }
 
    public String getPassengerGender() {
        return passengerGender;
    }
 
    public void setPassengerGender(String passengerGender) {
        this.passengerGender = passengerGender;
    }
 
    public String getPassengerIdCard() {
        return passengerIdCard;
    }
 
    public void setPassengerIdCard(String passengerIdCard) {
        this.passengerIdCard = passengerIdCard;
    }
 
    public String getSpecialNeeds() {
        return specialNeeds;
    }
 
    public void setSpecialNeeds(String specialNeeds) {
        this.specialNeeds = specialNeeds;
    }
 
    public String getServiceType() {
        return serviceType;
    }
 
    public void setServiceType(String serviceType) {
        this.serviceType = serviceType;
    }
 
    public String getPickupAddress() {
        return pickupAddress;
    }
 
    public void setPickupAddress(String pickupAddress) {
        this.pickupAddress = pickupAddress;
    }
 
    public BigDecimal getPickupLongitude() {
        return pickupLongitude;
    }
 
    public void setPickupLongitude(BigDecimal pickupLongitude) {
        this.pickupLongitude = pickupLongitude;
    }
 
    public BigDecimal getPickupLatitude() {
        return pickupLatitude;
    }
 
    public void setPickupLatitude(BigDecimal pickupLatitude) {
        this.pickupLatitude = pickupLatitude;
    }
 
    public String getDestinationAddress() {
        return destinationAddress;
    }
 
    public void setDestinationAddress(String destinationAddress) {
        this.destinationAddress = destinationAddress;
    }
 
    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 BigDecimal getServiceDistance() {
        return serviceDistance;
    }
 
    public void setServiceDistance(BigDecimal serviceDistance) {
        this.serviceDistance = serviceDistance;
    }
 
    public BigDecimal getServicePrice() {
        return servicePrice;
    }
 
    public void setServicePrice(BigDecimal servicePrice) {
        this.servicePrice = servicePrice;
    }
 
    @Override
    public String toString() {
        return "SysTaskWelfare{" +
                "id=" + id +
                ", taskId=" + taskId +
                ", passengerName='" + passengerName + '\'' +
                ", pickupAddress='" + pickupAddress + '\'' +
                ", destinationAddress='" + destinationAddress + '\'' +
                ", serviceDistance=" + serviceDistance +
                ", servicePrice=" + servicePrice +
                '}';
    }
}