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
package com.sinata.ministryoftransport.server;
 
public interface IMinistryOfTransportService {
 
 
    /**
     * 上传企业基本信息
     * @param baseInfoCompany
     * @throws Exception
     */
    String baseInfoCompany(String baseInfoCompany) throws Exception;
 
 
    /**
     * 上传网约车平台公司营运规模信息
     * @param baseInfoCompanyStat
     * @throws Exception
     */
    String baseInfoCompanyStat(String baseInfoCompanyStat) throws Exception;
 
 
    /**
     * 上传网约车平台公司支付信息
     * @param baseInfoCompanyPay
     * @throws Exception
     */
    String baseInfoCompanyPay(String baseInfoCompanyPay) throws Exception;
 
 
    /**
     * 上传网约车平台公司服务机构
     * @param baseInfoCompanyService
     * @throws Exception
     */
    String baseInfoCompanyService(String baseInfoCompanyService) throws Exception;
 
 
    /**
     * 网约车平台公司经营许可
     * @param baseInfoCompanyPermit
     * @throws Exception
     */
    String baseInfoCompanyPermit(String baseInfoCompanyPermit) throws Exception;
 
 
    /**
     * 网约车平台公司运价信息
     * @param baseInfoCompanyFare
     * @throws Exception
     */
    String baseInfoCompanyFare(String baseInfoCompanyFare) throws Exception;
 
 
    /**
     * 车辆基本信息
     * @param baseInfoVehicle
     * @throws Exception
     */
    String baseInfoVehicle(String baseInfoVehicle) throws Exception;
 
 
    /**
     * 车辆保险信息
     * @param baseInfoVehicleInsurance
     * @throws Exception
     */
    String baseInfoVehicleInsurance(String baseInfoVehicleInsurance) throws Exception;
 
 
    /**
     * 网约车车辆里程信息
     * @param baseInfoVehicleTotalMile
     * @throws Exception
     */
    String baseInfoVehicleTotalMile(String baseInfoVehicleTotalMile) throws Exception;
 
 
    /**
     * 驾驶员基本信息
     * @param baseInfoDriver
     * @throws Exception
     */
    String baseInfoDriver(String baseInfoDriver) throws Exception;
 
 
    /**
     * 网约车驾驶员培训信息
     * @param baseInfoDriverEducate
     * @throws Exception
     */
    String baseInfoDriverEducate(String baseInfoDriverEducate) throws Exception;
 
 
    /**
     * 驾驶员移动终端信息
     * @param baseInfoDriverApp
     * @throws Exception
     */
    String baseInfoDriverApp(String baseInfoDriverApp) throws Exception;
 
 
    /**
     * 驾驶员统计信息
     * @param baseInfoDriverStat
     * @throws Exception
     */
    String baseInfoDriverStat(String baseInfoDriverStat) throws Exception;
 
 
    /**
     * 乘客基本信息
     * @param baseInfoPassenger
     * @throws Exception
     */
    String baseInfoPassenger(String baseInfoPassenger) throws Exception;
 
 
    /**
     * 订单发起接口
     * @param orderCreate
     * @throws Exception
     */
    String orderCreate(String orderCreate) throws Exception;
 
 
    /**
     * 订单成功接口
     * @param orderMatch
     * @throws Exception
     */
    String orderMatch(String orderMatch) throws Exception;
 
 
    /**
     * 订单撤销接口
     * @param orderCancel
     * @throws Exception
     */
    String orderCancel(String orderCancel) throws Exception;
 
 
    /**
     * 车辆经营上线接口
     * @param operateLogin
     * @throws Exception
     */
    String operateLogin(String operateLogin) throws Exception;
 
 
    /**
     * 车辆经营下线接口
     * @param operateLogout
     * @throws Exception
     */
    String operateLogout(String operateLogout) throws Exception;
 
 
    /**
     * 经营出发接口
     * @param operateDepart
     * @throws Exception
     */
    String operateDepart(String operateDepart) throws Exception;
 
 
    /**
     * 经营到达接口
     * @param operateArrive
     * @throws Exception
     */
    String operateArrive(String operateArrive) throws Exception;
 
 
    /**
     * 经营支付接口
     * @param operatePay
     * @throws Exception
     */
    String operatePay(String operatePay) throws Exception;
 
 
    /**
     * 驾驶员定位信息
     * @param positionDriver
     * @throws Exception
     */
    String positionDriver(String positionDriver) throws Exception;
 
 
    /**
     * 车辆定位信息
     * @param positionVehicle
     * @throws Exception
     */
    String positionVehicle(String positionVehicle) throws Exception;
 
 
    /**
     * 乘客评价信息
     * @param ratedPassenger
     * @throws Exception
     */
    String ratedPassenger(String ratedPassenger) throws Exception;
 
 
    /**
     * 乘客投诉信息
     * @param ratedPassengerComplaint
     * @throws Exception
     */
    String ratedPassengerComplaint(String ratedPassengerComplaint) throws Exception;
 
 
    /**
     * 驾驶员处罚信息
     * @param ratedDriverPunish
     * @throws Exception
     */
    String ratedDriverPunish(String ratedDriverPunish) throws Exception;
 
 
    /**
     * 驾驶员信誉信息
     * @param ratedDriver
     * @throws Exception
     */
    String ratedDriver(String ratedDriver) throws Exception;
 
 
    /**
     * 私人小客车合乘信息服务平台基本信息
     * @param shareCompany
     * @throws Exception
     */
    String shareCompany(String shareCompany) throws Exception;
 
    /**
     * 私人小客车合乘驾驶员行程发布接口
     * @param shareRoute
     * @throws Exception
     */
    String shareRoute(String shareRoute) throws Exception;
 
 
    /**
     * 私人小客车合乘订单接口
     * @param shareOrder
     * @throws Exception
     */
    String shareOrder(String shareOrder) throws Exception;
 
 
    /**
     * 私人小客车合乘订单支付接口
     * @param sharePay
     * @throws Exception
     */
    String sharePay(String sharePay) throws Exception;
}