xuhy
2023-08-11 9f883e7eb1b181aab1a2dc36765a1d11e39cf532
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
package com.sinata.ministryoftransport.model;
 
import java.util.Date;
 
/**
 * 网约车平台公司运价信息
 */
public class BaseInfoCompanyFare {
    /**
     * 运价适用地行政区划代码
     */
    private Integer Address;
    /**
     * 运价类型编码(由网约车平台公司统一编码,应确保唯一性)
     */
    private String FareType;
    /**
     * 运价类型说明
     */
    private String FareTypeNote;
    /**
     * 运价有效期起
     */
    private Date FareValidOn;
    /**
     * 运价有效止
     */
    private Date FareValidOff;
    /**
     * 起步价(元)
     */
    private Double StartFare;
    /**
     * 起步里程(km)
     */
    private Integer StartMile;
    /**
     * 计程单价(按公里/元)
     */
    private Double UnitPricePerMile;
    /**
     * 计时单价(按分钟/元)
     */
    private Double UnitPricePerMinute;
    /**
     * 单程加价单价(元)
     */
    private Double UpPrice;
    /**
     * 单程加价公里(km)
     */
    private Integer UpPriceStartMile;
    /**
     * 营运早高峰时间起(HHmm 24小时)
     */
    private String MorningPeakTimeOn;
    /**
     * 营运早高峰时间止(HHmm 24小时)
     */
    private String MorningPeakTimeOff;
    /**
     * 营运晚高峰时间起(HHmm 24小时)
     */
    private String EveningPeakTimeOn;
    /**
     * 营运晚高峰时间止(HHmm 24小时)
     */
    private String EveningPeakTimeOff;
    /**
     * 其他营运高等时间起(HHmm 24小时)
     */
    private String OtherPeakTimeOn;
    /**
     * 其他营运高等时间止(HHmm 24小时)
     */
    private String OtherPeakTineOff;
    /**
     * 高峰时间单程加价单价(元)
     */
    private Double PeakUnitPrice;
    /**
     * 高峰时间单程加价公里(km)
     */
    private Integer PeakPriceStartMile;
    /**
     * 低速计时加价(按分钟 元)
     */
    private Double LowSpeedPriceMinute;
    /**
     * 夜间费(按公里 元)
     */
    private Double NightPricePerMile;
    /**
     * 夜间费(按分钟 元)
     */
    private Double NightPricePerMinute;
    /**
     * 其它加价金额(元)
     */
    private Double OtherPrice;
    /**
     * 状态(0:有效,1:无效)
     */
    private Integer State;
    /**
     * 操作标识(1:新增,2:更新,3:删除)
     */
    private Integer Flag;
    /**
     * 更新时间
     */
    private Date UpdateTime;
 
    public Integer getAddress() {
        return Address;
    }
 
    public void setAddress(Integer address) {
        Address = address;
    }
 
    public String getFareType() {
        return FareType;
    }
 
    public void setFareType(String fareType) {
        FareType = fareType;
    }
 
    public String getFareTypeNote() {
        return FareTypeNote;
    }
 
    public void setFareTypeNote(String fareTypeNote) {
        FareTypeNote = fareTypeNote;
    }
 
    public Date getFareValidOn() {
        return FareValidOn;
    }
 
    public void setFareValidOn(Date fareValidOn) {
        FareValidOn = fareValidOn;
    }
 
    public Date getFareValidOff() {
        return FareValidOff;
    }
 
    public void setFareValidOff(Date fareValidOff) {
        FareValidOff = fareValidOff;
    }
 
    public Double getStartFare() {
        return StartFare;
    }
 
    public void setStartFare(Double startFare) {
        StartFare = startFare;
    }
 
    public Integer getStartMile() {
        return StartMile;
    }
 
    public void setStartMile(Integer startMile) {
        StartMile = startMile;
    }
 
    public Double getUnitPricePerMile() {
        return UnitPricePerMile;
    }
 
    public void setUnitPricePerMile(Double unitPricePerMile) {
        UnitPricePerMile = unitPricePerMile;
    }
 
    public Double getUnitPricePerMinute() {
        return UnitPricePerMinute;
    }
 
    public void setUnitPricePerMinute(Double unitPricePerMinute) {
        UnitPricePerMinute = unitPricePerMinute;
    }
 
    public Double getUpPrice() {
        return UpPrice;
    }
 
    public void setUpPrice(Double upPrice) {
        UpPrice = upPrice;
    }
 
    public Integer getUpPriceStartMile() {
        return UpPriceStartMile;
    }
 
    public void setUpPriceStartMile(Integer upPriceStartMile) {
        UpPriceStartMile = upPriceStartMile;
    }
 
    public String getMorningPeakTimeOn() {
        return MorningPeakTimeOn;
    }
 
    public void setMorningPeakTimeOn(String morningPeakTimeOn) {
        MorningPeakTimeOn = morningPeakTimeOn;
    }
 
    public String getMorningPeakTimeOff() {
        return MorningPeakTimeOff;
    }
 
    public void setMorningPeakTimeOff(String morningPeakTimeOff) {
        MorningPeakTimeOff = morningPeakTimeOff;
    }
 
    public String getEveningPeakTimeOn() {
        return EveningPeakTimeOn;
    }
 
    public void setEveningPeakTimeOn(String eveningPeakTimeOn) {
        EveningPeakTimeOn = eveningPeakTimeOn;
    }
 
    public String getEveningPeakTimeOff() {
        return EveningPeakTimeOff;
    }
 
    public void setEveningPeakTimeOff(String eveningPeakTimeOff) {
        EveningPeakTimeOff = eveningPeakTimeOff;
    }
 
    public String getOtherPeakTimeOn() {
        return OtherPeakTimeOn;
    }
 
    public void setOtherPeakTimeOn(String otherPeakTimeOn) {
        OtherPeakTimeOn = otherPeakTimeOn;
    }
 
    public String getOtherPeakTineOff() {
        return OtherPeakTineOff;
    }
 
    public void setOtherPeakTineOff(String otherPeakTineOff) {
        OtherPeakTineOff = otherPeakTineOff;
    }
 
    public Double getPeakUnitPrice() {
        return PeakUnitPrice;
    }
 
    public void setPeakUnitPrice(Double peakUnitPrice) {
        PeakUnitPrice = peakUnitPrice;
    }
 
    public Integer getPeakPriceStartMile() {
        return PeakPriceStartMile;
    }
 
    public void setPeakPriceStartMile(Integer peakPriceStartMile) {
        PeakPriceStartMile = peakPriceStartMile;
    }
 
    public Double getLowSpeedPriceMinute() {
        return LowSpeedPriceMinute;
    }
 
    public void setLowSpeedPriceMinute(Double lowSpeedPriceMinute) {
        LowSpeedPriceMinute = lowSpeedPriceMinute;
    }
 
    public Double getNightPricePerMile() {
        return NightPricePerMile;
    }
 
    public void setNightPricePerMile(Double nightPricePerMile) {
        NightPricePerMile = nightPricePerMile;
    }
 
    public Double getNightPricePerMinute() {
        return NightPricePerMinute;
    }
 
    public void setNightPricePerMinute(Double nightPricePerMinute) {
        NightPricePerMinute = nightPricePerMinute;
    }
 
    public Double getOtherPrice() {
        return OtherPrice;
    }
 
    public void setOtherPrice(Double otherPrice) {
        OtherPrice = otherPrice;
    }
 
    public Integer getState() {
        return State;
    }
 
    public void setState(Integer state) {
        State = state;
    }
 
    public Integer getFlag() {
        return Flag;
    }
 
    public void setFlag(Integer flag) {
        Flag = flag;
    }
 
    public Date getUpdateTime() {
        return UpdateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        UpdateTime = updateTime;
    }
 
    @Override
    public String toString() {
        return "BaseInfoCompanyFare{" +
                "Address=" + Address +
                ", FareType='" + FareType + '\'' +
                ", FareTypeNote='" + FareTypeNote + '\'' +
                ", FareValidOn=" + FareValidOn +
                ", FareValidOff=" + FareValidOff +
                ", StartFare=" + StartFare +
                ", StartMile=" + StartMile +
                ", UnitPricePerMile=" + UnitPricePerMile +
                ", UnitPricePerMinute=" + UnitPricePerMinute +
                ", UpPrice=" + UpPrice +
                ", UpPriceStartMile=" + UpPriceStartMile +
                ", MorningPeakTimeOn='" + MorningPeakTimeOn + '\'' +
                ", MorningPeakTimeOff='" + MorningPeakTimeOff + '\'' +
                ", EveningPeakTimeOn='" + EveningPeakTimeOn + '\'' +
                ", EveningPeakTimeOff='" + EveningPeakTimeOff + '\'' +
                ", OtherPeakTimeOn='" + OtherPeakTimeOn + '\'' +
                ", OtherPeakTineOff='" + OtherPeakTineOff + '\'' +
                ", PeakUnitPrice=" + PeakUnitPrice +
                ", PeakPriceStartMile=" + PeakPriceStartMile +
                ", LowSpeedPriceMinute=" + LowSpeedPriceMinute +
                ", NightPricePerMile=" + NightPricePerMile +
                ", NightPricePerMinute=" + NightPricePerMinute +
                ", OtherPrice=" + OtherPrice +
                ", State=" + State +
                ", Flag=" + Flag +
                ", UpdateTime=" + UpdateTime +
                '}';
    }
}