|
@@ -1,97 +1,97 @@
|
|
|
export default {
|
|
export default {
|
|
|
/** 添加truck_driver */
|
|
/** 添加truck_driver */
|
|
|
add: {
|
|
add: {
|
|
|
- realUrl: '/strategy/truck_driver/add' as const,
|
|
|
|
|
|
|
+ realUrl: '/strategy/truck_driver/add',
|
|
|
reqType: {} as TruckDriver对象,
|
|
reqType: {} as TruckDriver对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 获取truck_driver列表 */
|
|
/** 获取truck_driver列表 */
|
|
|
list: {
|
|
list: {
|
|
|
- realUrl: '/strategy/truck_driver/list' as const,
|
|
|
|
|
|
|
+ realUrl: '/strategy/truck_driver/list',
|
|
|
reqType: {} as IPageParams<TruckDriver对象>,
|
|
reqType: {} as IPageParams<TruckDriver对象>,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 修改truck_driver */
|
|
/** 修改truck_driver */
|
|
|
update: {
|
|
update: {
|
|
|
- realUrl: '/strategy/truck_driver/update' as const,
|
|
|
|
|
|
|
+ realUrl: '/strategy/truck_driver/update',
|
|
|
reqType: {} as TruckDriver对象,
|
|
reqType: {} as TruckDriver对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 下载行车日志,导出专用 */
|
|
/** 下载行车日志,导出专用 */
|
|
|
download_test: {
|
|
download_test: {
|
|
|
- realUrl: '/tms/jxls_export/download_test' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/jxls_export/download_test',
|
|
|
reqType: {} as WorkOrder对象,
|
|
reqType: {} as WorkOrder对象,
|
|
|
resType: {} as StreamingResponseBody,
|
|
resType: {} as StreamingResponseBody,
|
|
|
},
|
|
},
|
|
|
/** 获取行车日志导出类 */
|
|
/** 获取行车日志导出类 */
|
|
|
get_get_work_log_tpl_vo: {
|
|
get_get_work_log_tpl_vo: {
|
|
|
- realUrl: '/tms/jxls_export/get_get_work_log_tpl_vo' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/jxls_export/get_get_work_log_tpl_vo',
|
|
|
reqType: {} as WorkOrder对象,
|
|
reqType: {} as WorkOrder对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 获取卡车距时间相近的位置信息 */
|
|
/** 获取卡车距时间相近的位置信息 */
|
|
|
get_by_date: {
|
|
get_by_date: {
|
|
|
- realUrl: '/tms/location/get_by_date' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/location/get_by_date',
|
|
|
reqType: {} as LocationQueryParam对象,
|
|
reqType: {} as LocationQueryParam对象,
|
|
|
resType: {} as LocationVO对象,
|
|
resType: {} as LocationVO对象,
|
|
|
},
|
|
},
|
|
|
/** 获取卡车位置信息 */
|
|
/** 获取卡车位置信息 */
|
|
|
get_by_truck: {
|
|
get_by_truck: {
|
|
|
- realUrl: '/tms/location/get_by_truck' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/location/get_by_truck',
|
|
|
reqType: {} as LocationQueryParam对象,
|
|
reqType: {} as LocationQueryParam对象,
|
|
|
resType: {} as LocationVO对象,
|
|
resType: {} as LocationVO对象,
|
|
|
},
|
|
},
|
|
|
/** 获取卡车位置信息list */
|
|
/** 获取卡车位置信息list */
|
|
|
get_truck_trip: {
|
|
get_truck_trip: {
|
|
|
- realUrl: '/tms/location/get_truck_trip' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/location/get_truck_trip',
|
|
|
reqType: {} as LocationQueryParam对象,
|
|
reqType: {} as LocationQueryParam对象,
|
|
|
resType: {} as Array<LocationVO对象>,
|
|
resType: {} as Array<LocationVO对象>,
|
|
|
},
|
|
},
|
|
|
/** 获取途中休息信息列表 */
|
|
/** 获取途中休息信息列表 */
|
|
|
list_1: {
|
|
list_1: {
|
|
|
- realUrl: '/tms/rest_info/list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/rest_info/list',
|
|
|
reqType: {} as IPageParams<RestInfo对象>,
|
|
reqType: {} as IPageParams<RestInfo对象>,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 修改途中休息信息 */
|
|
/** 修改途中休息信息 */
|
|
|
update_1: {
|
|
update_1: {
|
|
|
- realUrl: '/tms/rest_info/update' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/rest_info/update',
|
|
|
reqType: {} as RestInfo对象,
|
|
reqType: {} as RestInfo对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 添加托运方 */
|
|
/** 添加托运方 */
|
|
|
add_1: {
|
|
add_1: {
|
|
|
- realUrl: '/tms/shipper/add' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/shipper/add',
|
|
|
reqType: {} as Shipper对象,
|
|
reqType: {} as Shipper对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 删除托运方 */
|
|
/** 删除托运方 */
|
|
|
delete: {
|
|
delete: {
|
|
|
- realUrl: '/tms/shipper/delete' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/shipper/delete',
|
|
|
reqType: {} as Shipper对象,
|
|
reqType: {} as Shipper对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 根据id获取托运方详情 */
|
|
/** 根据id获取托运方详情 */
|
|
|
get_one: {
|
|
get_one: {
|
|
|
- realUrl: '/tms/shipper/get_one' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/shipper/get_one',
|
|
|
reqType: {} as Shipper对象,
|
|
reqType: {} as Shipper对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 获取托运方分页列表 */
|
|
/** 获取托运方分页列表 */
|
|
|
page_list: {
|
|
page_list: {
|
|
|
- realUrl: '/tms/shipper/page_list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/shipper/page_list',
|
|
|
reqType: {} as IPageParams<Shipper对象>,
|
|
reqType: {} as IPageParams<Shipper对象>,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 修改托运方 */
|
|
/** 修改托运方 */
|
|
|
update_2: {
|
|
update_2: {
|
|
|
- realUrl: '/tms/shipper/update' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/shipper/update',
|
|
|
reqType: {} as Shipper对象,
|
|
reqType: {} as Shipper对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 根据经纬度查询位置 */
|
|
/** 根据经纬度查询位置 */
|
|
|
baiduapi: {
|
|
baiduapi: {
|
|
|
- realUrl: '/tms/test/baiduapi' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/test/baiduapi',
|
|
|
reqType: {} as {
|
|
reqType: {} as {
|
|
|
/** lat */
|
|
/** lat */
|
|
|
lat: string
|
|
lat: string
|
|
@@ -102,7 +102,7 @@ export default {
|
|
|
},
|
|
},
|
|
|
/** mongo查询测试接口 */
|
|
/** mongo查询测试接口 */
|
|
|
mongoCheck: {
|
|
mongoCheck: {
|
|
|
- realUrl: '/tms/test/mongoCheck' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/test/mongoCheck',
|
|
|
reqType: {} as {
|
|
reqType: {} as {
|
|
|
/** clientId */
|
|
/** clientId */
|
|
|
clientId: string
|
|
clientId: string
|
|
@@ -113,7 +113,7 @@ export default {
|
|
|
},
|
|
},
|
|
|
/** mongo查询车辆最新位置 */
|
|
/** mongo查询车辆最新位置 */
|
|
|
query_truck: {
|
|
query_truck: {
|
|
|
- realUrl: '/tms/test/query_truck' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/test/query_truck',
|
|
|
reqType: {} as {
|
|
reqType: {} as {
|
|
|
/** truckId */
|
|
/** truckId */
|
|
|
truckId: number
|
|
truckId: number
|
|
@@ -122,7 +122,7 @@ export default {
|
|
|
},
|
|
},
|
|
|
/** mongo查询车辆最新位置 */
|
|
/** mongo查询车辆最新位置 */
|
|
|
query_truck_trip: {
|
|
query_truck_trip: {
|
|
|
- realUrl: '/tms/test/query_truck_trip' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/test/query_truck_trip',
|
|
|
reqType: {} as {
|
|
reqType: {} as {
|
|
|
/** truckId */
|
|
/** truckId */
|
|
|
truckId: number
|
|
truckId: number
|
|
@@ -131,7 +131,7 @@ export default {
|
|
|
},
|
|
},
|
|
|
/** 测试发送运单短信 */
|
|
/** 测试发送运单短信 */
|
|
|
testSms: {
|
|
testSms: {
|
|
|
- realUrl: '/tms/test/testSms' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/test/testSms',
|
|
|
reqType: {} as {
|
|
reqType: {} as {
|
|
|
/** truckId */
|
|
/** truckId */
|
|
|
truckId: number
|
|
truckId: number
|
|
@@ -140,7 +140,7 @@ export default {
|
|
|
},
|
|
},
|
|
|
/** 测试运单短信模板 */
|
|
/** 测试运单短信模板 */
|
|
|
testSmsTemp: {
|
|
testSmsTemp: {
|
|
|
- realUrl: '/tms/test/testSmsTemp' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/test/testSmsTemp',
|
|
|
reqType: {} as {
|
|
reqType: {} as {
|
|
|
/** monbiles */
|
|
/** monbiles */
|
|
|
monbiles: string
|
|
monbiles: string
|
|
@@ -149,7 +149,7 @@ export default {
|
|
|
},
|
|
},
|
|
|
/** 工具类测试 */
|
|
/** 工具类测试 */
|
|
|
testUtil: {
|
|
testUtil: {
|
|
|
- realUrl: '/tms/test/testUtil' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/test/testUtil',
|
|
|
reqType: {} as {
|
|
reqType: {} as {
|
|
|
/** lat */
|
|
/** lat */
|
|
|
lat: number
|
|
lat: number
|
|
@@ -162,7 +162,7 @@ export default {
|
|
|
},
|
|
},
|
|
|
/** mongo聚合查询测试 */
|
|
/** mongo聚合查询测试 */
|
|
|
test_mongo_group: {
|
|
test_mongo_group: {
|
|
|
- realUrl: '/tms/test/test_mongo_group' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/test/test_mongo_group',
|
|
|
reqType: {} as {
|
|
reqType: {} as {
|
|
|
/** truckIds */
|
|
/** truckIds */
|
|
|
truckIds: string
|
|
truckIds: string
|
|
@@ -171,553 +171,553 @@ export default {
|
|
|
},
|
|
},
|
|
|
/** 添加燃气费用 */
|
|
/** 添加燃气费用 */
|
|
|
add_2: {
|
|
add_2: {
|
|
|
- realUrl: '/tms/tms_gas_fee/add' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/tms_gas_fee/add',
|
|
|
reqType: {} as TmsGasFee对象,
|
|
reqType: {} as TmsGasFee对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 删除燃气费用 */
|
|
/** 删除燃气费用 */
|
|
|
delete_1: {
|
|
delete_1: {
|
|
|
- realUrl: '/tms/tms_gas_fee/delete' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/tms_gas_fee/delete',
|
|
|
reqType: {} as TmsGasFee对象,
|
|
reqType: {} as TmsGasFee对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 根据id获取燃气费用详情 */
|
|
/** 根据id获取燃气费用详情 */
|
|
|
get_one_1: {
|
|
get_one_1: {
|
|
|
- realUrl: '/tms/tms_gas_fee/get_one' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/tms_gas_fee/get_one',
|
|
|
reqType: {} as TmsGasFee对象,
|
|
reqType: {} as TmsGasFee对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 获取燃气费用列表 */
|
|
/** 获取燃气费用列表 */
|
|
|
list_2: {
|
|
list_2: {
|
|
|
- realUrl: '/tms/tms_gas_fee/list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/tms_gas_fee/list',
|
|
|
reqType: {} as TmsGasFee对象,
|
|
reqType: {} as TmsGasFee对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 获取tms_gas_fee分页列表 */
|
|
/** 获取tms_gas_fee分页列表 */
|
|
|
page_list_1: {
|
|
page_list_1: {
|
|
|
- realUrl: '/tms/tms_gas_fee/page_list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/tms_gas_fee/page_list',
|
|
|
reqType: {} as IPageParams<TmsGasFee对象>,
|
|
reqType: {} as IPageParams<TmsGasFee对象>,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 修改燃气费用 */
|
|
/** 修改燃气费用 */
|
|
|
update_3: {
|
|
update_3: {
|
|
|
- realUrl: '/tms/tms_gas_fee/update' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/tms_gas_fee/update',
|
|
|
reqType: {} as TmsGasFee对象,
|
|
reqType: {} as TmsGasFee对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 添加线路费用 */
|
|
/** 添加线路费用 */
|
|
|
add_3: {
|
|
add_3: {
|
|
|
- realUrl: '/tms/tms_line_cost/add' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/tms_line_cost/add',
|
|
|
reqType: {} as TmsLineCost对象,
|
|
reqType: {} as TmsLineCost对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 删除线路费用 */
|
|
/** 删除线路费用 */
|
|
|
delete_2: {
|
|
delete_2: {
|
|
|
- realUrl: '/tms/tms_line_cost/delete' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/tms_line_cost/delete',
|
|
|
reqType: {} as TmsLineCost对象,
|
|
reqType: {} as TmsLineCost对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 根据id获取线路费用详情 */
|
|
/** 根据id获取线路费用详情 */
|
|
|
get_one_2: {
|
|
get_one_2: {
|
|
|
- realUrl: '/tms/tms_line_cost/get_one' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/tms_line_cost/get_one',
|
|
|
reqType: {} as TmsLineCost对象,
|
|
reqType: {} as TmsLineCost对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 获取线路费用列表 */
|
|
/** 获取线路费用列表 */
|
|
|
list_3: {
|
|
list_3: {
|
|
|
- realUrl: '/tms/tms_line_cost/list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/tms_line_cost/list',
|
|
|
reqType: {} as TmsLineCost对象,
|
|
reqType: {} as TmsLineCost对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 获取tms_line_cost分页列表 */
|
|
/** 获取tms_line_cost分页列表 */
|
|
|
page_list_2: {
|
|
page_list_2: {
|
|
|
- realUrl: '/tms/tms_line_cost/page_list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/tms_line_cost/page_list',
|
|
|
reqType: {} as IPageParams<TmsLineCost对象>,
|
|
reqType: {} as IPageParams<TmsLineCost对象>,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 修改线路费用 */
|
|
/** 修改线路费用 */
|
|
|
update_4: {
|
|
update_4: {
|
|
|
- realUrl: '/tms/tms_line_cost/update' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/tms_line_cost/update',
|
|
|
reqType: {} as TmsLineCost对象,
|
|
reqType: {} as TmsLineCost对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 添加tms_line_cost_other */
|
|
/** 添加tms_line_cost_other */
|
|
|
add_4: {
|
|
add_4: {
|
|
|
- realUrl: '/tms/tms_line_cost_other/add' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/tms_line_cost_other/add',
|
|
|
reqType: {} as TmsLineCostOther对象,
|
|
reqType: {} as TmsLineCostOther对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 获取tms_line_cost_other列表 */
|
|
/** 获取tms_line_cost_other列表 */
|
|
|
list_4: {
|
|
list_4: {
|
|
|
- realUrl: '/tms/tms_line_cost_other/list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/tms_line_cost_other/list',
|
|
|
reqType: {} as IPageParams<TmsLineCostOther对象>,
|
|
reqType: {} as IPageParams<TmsLineCostOther对象>,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 修改tms_line_cost_other */
|
|
/** 修改tms_line_cost_other */
|
|
|
update_5: {
|
|
update_5: {
|
|
|
- realUrl: '/tms/tms_line_cost_other/update' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/tms_line_cost_other/update',
|
|
|
reqType: {} as TmsLineCostOther对象,
|
|
reqType: {} as TmsLineCostOther对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 添加其他费用 */
|
|
/** 添加其他费用 */
|
|
|
add_5: {
|
|
add_5: {
|
|
|
- realUrl: '/tms/tms_other_fee/add' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/tms_other_fee/add',
|
|
|
reqType: {} as TmsOtherFee对象,
|
|
reqType: {} as TmsOtherFee对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 删除其他费用 */
|
|
/** 删除其他费用 */
|
|
|
delete_3: {
|
|
delete_3: {
|
|
|
- realUrl: '/tms/tms_other_fee/delete' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/tms_other_fee/delete',
|
|
|
reqType: {} as TmsOtherFee对象,
|
|
reqType: {} as TmsOtherFee对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 根据id获取其他费用详情 */
|
|
/** 根据id获取其他费用详情 */
|
|
|
get_one_3: {
|
|
get_one_3: {
|
|
|
- realUrl: '/tms/tms_other_fee/get_one' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/tms_other_fee/get_one',
|
|
|
reqType: {} as TmsOtherFee对象,
|
|
reqType: {} as TmsOtherFee对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 获取其他费用列表(供行车费用列表展示用) */
|
|
/** 获取其他费用列表(供行车费用列表展示用) */
|
|
|
list_5: {
|
|
list_5: {
|
|
|
- realUrl: '/tms/tms_other_fee/list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/tms_other_fee/list',
|
|
|
reqType: {} as TmsOtherFee对象,
|
|
reqType: {} as TmsOtherFee对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 获取tms_other_fee分页列表 */
|
|
/** 获取tms_other_fee分页列表 */
|
|
|
page_list_3: {
|
|
page_list_3: {
|
|
|
- realUrl: '/tms/tms_other_fee/page_list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/tms_other_fee/page_list',
|
|
|
reqType: {} as IPageParams<TmsOtherFee对象>,
|
|
reqType: {} as IPageParams<TmsOtherFee对象>,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 修改其他费用 */
|
|
/** 修改其他费用 */
|
|
|
update_6: {
|
|
update_6: {
|
|
|
- realUrl: '/tms/tms_other_fee/update' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/tms_other_fee/update',
|
|
|
reqType: {} as TmsOtherFee对象,
|
|
reqType: {} as TmsOtherFee对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 添加truck */
|
|
/** 添加truck */
|
|
|
add_6: {
|
|
add_6: {
|
|
|
- realUrl: '/tms/truck/add' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck/add',
|
|
|
reqType: {} as Truck对象,
|
|
reqType: {} as Truck对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 取车牌号 */
|
|
/** 取车牌号 */
|
|
|
get_car_number: {
|
|
get_car_number: {
|
|
|
- realUrl: '/tms/truck/get_car_number' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck/get_car_number',
|
|
|
|
|
|
|
|
resType: {} as Truck对象,
|
|
resType: {} as Truck对象,
|
|
|
},
|
|
},
|
|
|
/** 获取truck列表 */
|
|
/** 获取truck列表 */
|
|
|
list_6: {
|
|
list_6: {
|
|
|
- realUrl: '/tms/truck/list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck/list',
|
|
|
reqType: {} as IPageParams<Truck对象>,
|
|
reqType: {} as IPageParams<Truck对象>,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 修改truck */
|
|
/** 修改truck */
|
|
|
update_7: {
|
|
update_7: {
|
|
|
- realUrl: '/tms/truck/update' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck/update',
|
|
|
reqType: {} as Truck对象,
|
|
reqType: {} as Truck对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 查找车辆检查信息 */
|
|
/** 查找车辆检查信息 */
|
|
|
find: {
|
|
find: {
|
|
|
- realUrl: '/tms/truck_check_info/find' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck_check_info/find',
|
|
|
reqType: {} as TruckCheckInfo对象,
|
|
reqType: {} as TruckCheckInfo对象,
|
|
|
resType: {} as TruckCheckInfo对象,
|
|
resType: {} as TruckCheckInfo对象,
|
|
|
},
|
|
},
|
|
|
/** 获取truck_check_info列表 */
|
|
/** 获取truck_check_info列表 */
|
|
|
list_7: {
|
|
list_7: {
|
|
|
- realUrl: '/tms/truck_check_info/list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck_check_info/list',
|
|
|
reqType: {} as IPageParams<TruckCheckInfo对象>,
|
|
reqType: {} as IPageParams<TruckCheckInfo对象>,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 修改truck_check_info */
|
|
/** 修改truck_check_info */
|
|
|
update_8: {
|
|
update_8: {
|
|
|
- realUrl: '/tms/truck_check_info/update' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck_check_info/update',
|
|
|
reqType: {} as TruckCheckInfo对象,
|
|
reqType: {} as TruckCheckInfo对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 新增运力部门 */
|
|
/** 新增运力部门 */
|
|
|
add_7: {
|
|
add_7: {
|
|
|
- realUrl: '/tms/truck_dept/add' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck_dept/add',
|
|
|
reqType: {} as TruckDept对象,
|
|
reqType: {} as TruckDept对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 删除运力部门 */
|
|
/** 删除运力部门 */
|
|
|
delete_4: {
|
|
delete_4: {
|
|
|
- realUrl: '/tms/truck_dept/delete' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck_dept/delete',
|
|
|
reqType: {} as TruckDept对象,
|
|
reqType: {} as TruckDept对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 根据id获取运力部门详情 */
|
|
/** 根据id获取运力部门详情 */
|
|
|
get_one_4: {
|
|
get_one_4: {
|
|
|
- realUrl: '/tms/truck_dept/get_one' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck_dept/get_one',
|
|
|
reqType: {} as TruckDept对象,
|
|
reqType: {} as TruckDept对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 获取运力部门管理分页列表 */
|
|
/** 获取运力部门管理分页列表 */
|
|
|
page_list_4: {
|
|
page_list_4: {
|
|
|
- realUrl: '/tms/truck_dept/page_list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck_dept/page_list',
|
|
|
reqType: {} as IPageParams<TruckDept对象>,
|
|
reqType: {} as IPageParams<TruckDept对象>,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 修改运力部门信息 */
|
|
/** 修改运力部门信息 */
|
|
|
update_9: {
|
|
update_9: {
|
|
|
- realUrl: '/tms/truck_dept/update' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck_dept/update',
|
|
|
reqType: {} as TruckDept对象,
|
|
reqType: {} as TruckDept对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 添加车辆押运员 */
|
|
/** 添加车辆押运员 */
|
|
|
add_8: {
|
|
add_8: {
|
|
|
- realUrl: '/tms/truck_escort/add' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck_escort/add',
|
|
|
reqType: {} as TruckEscortAddParam,
|
|
reqType: {} as TruckEscortAddParam,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 车辆绑定/解绑押运员 */
|
|
/** 车辆绑定/解绑押运员 */
|
|
|
bind_truck: {
|
|
bind_truck: {
|
|
|
- realUrl: '/tms/truck_escort/bind_truck' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck_escort/bind_truck',
|
|
|
reqType: {} as TruckEscort对象,
|
|
reqType: {} as TruckEscort对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 删除车辆押运员 */
|
|
/** 删除车辆押运员 */
|
|
|
delete_5: {
|
|
delete_5: {
|
|
|
- realUrl: '/tms/truck_escort/delete' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck_escort/delete',
|
|
|
reqType: {} as TruckEscort对象,
|
|
reqType: {} as TruckEscort对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 获取单个车辆押运员详情 */
|
|
/** 获取单个车辆押运员详情 */
|
|
|
get_one_5: {
|
|
get_one_5: {
|
|
|
- realUrl: '/tms/truck_escort/get_one' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck_escort/get_one',
|
|
|
reqType: {} as TruckEscort对象,
|
|
reqType: {} as TruckEscort对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 根据条件获取车辆押运员列表 */
|
|
/** 根据条件获取车辆押运员列表 */
|
|
|
list_8: {
|
|
list_8: {
|
|
|
- realUrl: '/tms/truck_escort/list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck_escort/list',
|
|
|
reqType: {} as TruckEscort对象,
|
|
reqType: {} as TruckEscort对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 获取没有绑定卡车的押运员列表 */
|
|
/** 获取没有绑定卡车的押运员列表 */
|
|
|
no_truck_list: {
|
|
no_truck_list: {
|
|
|
- realUrl: '/tms/truck_escort/no_truck_list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck_escort/no_truck_list',
|
|
|
reqType: {} as TruckEscort对象,
|
|
reqType: {} as TruckEscort对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 获取车辆押运员分页列表 */
|
|
/** 获取车辆押运员分页列表 */
|
|
|
page_list_5: {
|
|
page_list_5: {
|
|
|
- realUrl: '/tms/truck_escort/page_list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck_escort/page_list',
|
|
|
reqType: {} as IPageParams<TruckEscort对象>,
|
|
reqType: {} as IPageParams<TruckEscort对象>,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 修改车辆押运员 */
|
|
/** 修改车辆押运员 */
|
|
|
update_10: {
|
|
update_10: {
|
|
|
- realUrl: '/tms/truck_escort/update' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck_escort/update',
|
|
|
reqType: {} as TruckEscort对象,
|
|
reqType: {} as TruckEscort对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 查找车辆途中维修信息 */
|
|
/** 查找车辆途中维修信息 */
|
|
|
find_1: {
|
|
find_1: {
|
|
|
- realUrl: '/tms/truck_repair_info/find' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck_repair_info/find',
|
|
|
reqType: {} as TruckRepairInfo对象,
|
|
reqType: {} as TruckRepairInfo对象,
|
|
|
resType: {} as TruckRepairInfo对象,
|
|
resType: {} as TruckRepairInfo对象,
|
|
|
},
|
|
},
|
|
|
/** 获取truck_repair_info列表 */
|
|
/** 获取truck_repair_info列表 */
|
|
|
list_9: {
|
|
list_9: {
|
|
|
- realUrl: '/tms/truck_repair_info/list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck_repair_info/list',
|
|
|
reqType: {} as IPageParams<TruckRepairInfo对象>,
|
|
reqType: {} as IPageParams<TruckRepairInfo对象>,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 添加truck_sim_card */
|
|
/** 添加truck_sim_card */
|
|
|
add_9: {
|
|
add_9: {
|
|
|
- realUrl: '/tms/truck_sim_card/add' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck_sim_card/add',
|
|
|
reqType: {} as TruckSimCard对象,
|
|
reqType: {} as TruckSimCard对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 获取truck_sim_card列表 */
|
|
/** 获取truck_sim_card列表 */
|
|
|
list_10: {
|
|
list_10: {
|
|
|
- realUrl: '/tms/truck_sim_card/list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck_sim_card/list',
|
|
|
reqType: {} as IPageParams<TruckSimCard对象>,
|
|
reqType: {} as IPageParams<TruckSimCard对象>,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 修改truck_sim_card */
|
|
/** 修改truck_sim_card */
|
|
|
update_11: {
|
|
update_11: {
|
|
|
- realUrl: '/tms/truck_sim_card/update' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/truck_sim_card/update',
|
|
|
reqType: {} as TruckSimCard对象,
|
|
reqType: {} as TruckSimCard对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 查询当前行程周期 */
|
|
/** 查询当前行程周期 */
|
|
|
find_2: {
|
|
find_2: {
|
|
|
- realUrl: '/tms/work_cycle/find' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_cycle/find',
|
|
|
reqType: {} as WorkCycle对象,
|
|
reqType: {} as WorkCycle对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 获取历史行车列表 */
|
|
/** 获取历史行车列表 */
|
|
|
list_11: {
|
|
list_11: {
|
|
|
- realUrl: '/tms/work_cycle/list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_cycle/list',
|
|
|
reqType: {} as IPageParams<WorkCycle对象>,
|
|
reqType: {} as IPageParams<WorkCycle对象>,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 更新前行程周期天气 */
|
|
/** 更新前行程周期天气 */
|
|
|
update_weather: {
|
|
update_weather: {
|
|
|
- realUrl: '/tms/work_cycle/update_weather' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_cycle/update_weather',
|
|
|
reqType: {} as WorkCycle对象,
|
|
reqType: {} as WorkCycle对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 获取行车日志列表 */
|
|
/** 获取行车日志列表 */
|
|
|
list_12: {
|
|
list_12: {
|
|
|
- realUrl: '/tms/work_log/list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_log/list',
|
|
|
reqType: {} as IPageParams<WorkLog对象>,
|
|
reqType: {} as IPageParams<WorkLog对象>,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 修改work_log */
|
|
/** 修改work_log */
|
|
|
update_12: {
|
|
update_12: {
|
|
|
- realUrl: '/tms/work_log/update' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_log/update',
|
|
|
reqType: {} as WorkLog对象,
|
|
reqType: {} as WorkLog对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 根据id关闭运单(运单分页列表PC端) */
|
|
/** 根据id关闭运单(运单分页列表PC端) */
|
|
|
close: {
|
|
close: {
|
|
|
- realUrl: '/tms/work_order/close' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_order/close',
|
|
|
reqType: {} as WorkOrder对象,
|
|
reqType: {} as WorkOrder对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 运单详情 */
|
|
/** 运单详情 */
|
|
|
find_work_order_info: {
|
|
find_work_order_info: {
|
|
|
- realUrl: '/tms/work_order/find_work_order_info' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_order/find_work_order_info',
|
|
|
reqType: {} as WorkOrder对象,
|
|
reqType: {} as WorkOrder对象,
|
|
|
resType: {} as WorkOrder对象,
|
|
resType: {} as WorkOrder对象,
|
|
|
},
|
|
},
|
|
|
/** 根据id获取运单详情,PC端 */
|
|
/** 根据id获取运单详情,PC端 */
|
|
|
get_one_6: {
|
|
get_one_6: {
|
|
|
- realUrl: '/tms/work_order/get_one' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_order/get_one',
|
|
|
reqType: {} as WorkOrder对象,
|
|
reqType: {} as WorkOrder对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 获取运单分页列表PC端 */
|
|
/** 获取运单分页列表PC端 */
|
|
|
page_list_6: {
|
|
page_list_6: {
|
|
|
- realUrl: '/tms/work_order/page_list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_order/page_list',
|
|
|
reqType: {} as IPageParams<WorkOrderPageParam>,
|
|
reqType: {} as IPageParams<WorkOrderPageParam>,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 根据id修改运单(运单分页列表PC端,待执行0已完成40已关闭50运单可改) */
|
|
/** 根据id修改运单(运单分页列表PC端,待执行0已完成40已关闭50运单可改) */
|
|
|
pc_update: {
|
|
pc_update: {
|
|
|
- realUrl: '/tms/work_order/pc_update' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_order/pc_update',
|
|
|
reqType: {} as WorkOrder对象,
|
|
reqType: {} as WorkOrder对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 根据id中止运单(运单分页列表PC端) */
|
|
/** 根据id中止运单(运单分页列表PC端) */
|
|
|
stop: {
|
|
stop: {
|
|
|
- realUrl: '/tms/work_order/stop' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_order/stop',
|
|
|
reqType: {} as WorkOrder对象,
|
|
reqType: {} as WorkOrder对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 新增装车派单 */
|
|
/** 新增装车派单 */
|
|
|
add_load_order: {
|
|
add_load_order: {
|
|
|
- realUrl: '/tms/work_order_manage/add_load_order' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_order_manage/add_load_order',
|
|
|
reqType: {} as AddWorkOrderVO对象,
|
|
reqType: {} as AddWorkOrderVO对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 新增卸车派单 */
|
|
/** 新增卸车派单 */
|
|
|
add_unload_order: {
|
|
add_unload_order: {
|
|
|
- realUrl: '/tms/work_order_manage/add_unload_order' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_order_manage/add_unload_order',
|
|
|
reqType: {} as AddWorkOrderVO对象,
|
|
reqType: {} as AddWorkOrderVO对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 当前车辆行车日志详情 */
|
|
/** 当前车辆行车日志详情 */
|
|
|
current_trip_detail: {
|
|
current_trip_detail: {
|
|
|
- realUrl: '/tms/work_order_manage/current_trip_detail' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_order_manage/current_trip_detail',
|
|
|
reqType: {} as 通用id参数,
|
|
reqType: {} as 通用id参数,
|
|
|
resType: {} as Array<WorkLog对象>,
|
|
resType: {} as Array<WorkLog对象>,
|
|
|
},
|
|
},
|
|
|
/** 车辆历史行程 */
|
|
/** 车辆历史行程 */
|
|
|
history_trip: {
|
|
history_trip: {
|
|
|
- realUrl: '/tms/work_order_manage/history_trip' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_order_manage/history_trip',
|
|
|
reqType: {} as Truck对象,
|
|
reqType: {} as Truck对象,
|
|
|
resType: {} as Array<TruckHistoryTripVO对象>,
|
|
resType: {} as Array<TruckHistoryTripVO对象>,
|
|
|
},
|
|
},
|
|
|
/** 车辆行车详情 */
|
|
/** 车辆行车详情 */
|
|
|
history_trip_detail: {
|
|
history_trip_detail: {
|
|
|
- realUrl: '/tms/work_order_manage/history_trip_detail' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_order_manage/history_trip_detail',
|
|
|
reqType: {} as 通用id参数,
|
|
reqType: {} as 通用id参数,
|
|
|
resType: {} as Array<WorkLog对象>,
|
|
resType: {} as Array<WorkLog对象>,
|
|
|
},
|
|
},
|
|
|
/** 获取运力调度列表 */
|
|
/** 获取运力调度列表 */
|
|
|
list_13: {
|
|
list_13: {
|
|
|
- realUrl: '/tms/work_order_manage/list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_order_manage/list',
|
|
|
reqType: {} as IPageParams<WorkManagePageParam对象>,
|
|
reqType: {} as IPageParams<WorkManagePageParam对象>,
|
|
|
resType: {} as IPage<TruckOrderManageVO对象>,
|
|
resType: {} as IPage<TruckOrderManageVO对象>,
|
|
|
},
|
|
},
|
|
|
/** 运力调度统计汇总信息 */
|
|
/** 运力调度统计汇总信息 */
|
|
|
statistics: {
|
|
statistics: {
|
|
|
- realUrl: '/tms/work_order_manage/statistics' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_order_manage/statistics',
|
|
|
reqType: {} as WorkManagePageParam对象,
|
|
reqType: {} as WorkManagePageParam对象,
|
|
|
resType: {} as TruckOrderStatisticsVO对象,
|
|
resType: {} as TruckOrderStatisticsVO对象,
|
|
|
},
|
|
},
|
|
|
/** 添加作业点 */
|
|
/** 添加作业点 */
|
|
|
add_10: {
|
|
add_10: {
|
|
|
- realUrl: '/tms/work_spot/add' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_spot/add',
|
|
|
reqType: {} as WorkSpot对象,
|
|
reqType: {} as WorkSpot对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 删除作业点 */
|
|
/** 删除作业点 */
|
|
|
delete_6: {
|
|
delete_6: {
|
|
|
- realUrl: '/tms/work_spot/delete' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_spot/delete',
|
|
|
reqType: {} as WorkSpot对象,
|
|
reqType: {} as WorkSpot对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 根据id获取作业点详情 */
|
|
/** 根据id获取作业点详情 */
|
|
|
find_by_name: {
|
|
find_by_name: {
|
|
|
- realUrl: '/tms/work_spot/find_by_name' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_spot/find_by_name',
|
|
|
reqType: {} as WorkSpot对象,
|
|
reqType: {} as WorkSpot对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 根据id获取作业点详情 */
|
|
/** 根据id获取作业点详情 */
|
|
|
get_one_7: {
|
|
get_one_7: {
|
|
|
- realUrl: '/tms/work_spot/get_one' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_spot/get_one',
|
|
|
reqType: {} as WorkSpot对象,
|
|
reqType: {} as WorkSpot对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 获取作业点分页列表 */
|
|
/** 获取作业点分页列表 */
|
|
|
page_list_7: {
|
|
page_list_7: {
|
|
|
- realUrl: '/tms/work_spot/page_list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_spot/page_list',
|
|
|
reqType: {} as IPageParams<WorkSpot对象>,
|
|
reqType: {} as IPageParams<WorkSpot对象>,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 修改作业点 */
|
|
/** 修改作业点 */
|
|
|
update_13: {
|
|
update_13: {
|
|
|
- realUrl: '/tms/work_spot/update' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/work_spot/update',
|
|
|
reqType: {} as WorkSpot对象,
|
|
reqType: {} as WorkSpot对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 上报途中休息信息 */
|
|
/** 上报途中休息信息 */
|
|
|
add_rest_info: {
|
|
add_rest_info: {
|
|
|
- realUrl: '/tms/worker/add_rest_info' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/worker/add_rest_info',
|
|
|
reqType: {} as RestInfo对象,
|
|
reqType: {} as RestInfo对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 装卸车成果上报 */
|
|
/** 装卸车成果上报 */
|
|
|
add_result: {
|
|
add_result: {
|
|
|
- realUrl: '/tms/worker/add_result' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/worker/add_result',
|
|
|
reqType: {} as WorkOrder对象,
|
|
reqType: {} as WorkOrder对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 上报车辆检查信息 */
|
|
/** 上报车辆检查信息 */
|
|
|
add_truck_check_info: {
|
|
add_truck_check_info: {
|
|
|
- realUrl: '/tms/worker/add_truck_check_info' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/worker/add_truck_check_info',
|
|
|
reqType: {} as TruckCheckInfo对象,
|
|
reqType: {} as TruckCheckInfo对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 上报车辆途中维修信息 */
|
|
/** 上报车辆途中维修信息 */
|
|
|
add_truck_repair_info: {
|
|
add_truck_repair_info: {
|
|
|
- realUrl: '/tms/worker/add_truck_repair_info' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/worker/add_truck_repair_info',
|
|
|
reqType: {} as TruckRepairInfo对象,
|
|
reqType: {} as TruckRepairInfo对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 装些车等待上报 */
|
|
/** 装些车等待上报 */
|
|
|
add_wait: {
|
|
add_wait: {
|
|
|
- realUrl: '/tms/worker/add_wait' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/worker/add_wait',
|
|
|
reqType: {} as WorkOrder对象,
|
|
reqType: {} as WorkOrder对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 点击待执行运单,变成已读 */
|
|
/** 点击待执行运单,变成已读 */
|
|
|
add_work_order_readinfo: {
|
|
add_work_order_readinfo: {
|
|
|
- realUrl: '/tms/worker/add_work_order_readinfo' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/worker/add_work_order_readinfo',
|
|
|
reqType: {} as WorkOrderReadinfo对象,
|
|
reqType: {} as WorkOrderReadinfo对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 6.上报已到达收车点 */
|
|
/** 6.上报已到达收车点 */
|
|
|
arrive_terminal: {
|
|
arrive_terminal: {
|
|
|
- realUrl: '/tms/worker/arrive_terminal' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/worker/arrive_terminal',
|
|
|
reqType: {} as WorkOrder对象,
|
|
reqType: {} as WorkOrder对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 当前周期所有订单列表 */
|
|
/** 当前周期所有订单列表 */
|
|
|
find_cycle_order_list: {
|
|
find_cycle_order_list: {
|
|
|
- realUrl: '/tms/worker/find_cycle_order_list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/worker/find_cycle_order_list',
|
|
|
reqType: {} as WorkOrder对象,
|
|
reqType: {} as WorkOrder对象,
|
|
|
resType: {} as Array<WorkOrder对象>,
|
|
resType: {} as Array<WorkOrder对象>,
|
|
|
},
|
|
},
|
|
|
/** 首页订单列表 */
|
|
/** 首页订单列表 */
|
|
|
find_index_order_list: {
|
|
find_index_order_list: {
|
|
|
- realUrl: '/tms/worker/find_index_order_list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/worker/find_index_order_list',
|
|
|
reqType: {} as WorkOrder对象,
|
|
reqType: {} as WorkOrder对象,
|
|
|
resType: {} as Array<WorkOrder对象>,
|
|
resType: {} as Array<WorkOrder对象>,
|
|
|
},
|
|
},
|
|
|
/** 运单详情 */
|
|
/** 运单详情 */
|
|
|
find_order_info: {
|
|
find_order_info: {
|
|
|
- realUrl: '/tms/worker/find_order_info' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/worker/find_order_info',
|
|
|
reqType: {} as WorkOrder对象,
|
|
reqType: {} as WorkOrder对象,
|
|
|
resType: {} as WorkOrder对象,
|
|
resType: {} as WorkOrder对象,
|
|
|
},
|
|
},
|
|
|
/** 查询车辆检查信息 */
|
|
/** 查询车辆检查信息 */
|
|
|
find_truck_check_info: {
|
|
find_truck_check_info: {
|
|
|
- realUrl: '/tms/worker/find_truck_check_info' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/worker/find_truck_check_info',
|
|
|
reqType: {} as TruckCheckInfo对象,
|
|
reqType: {} as TruckCheckInfo对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 运力详情 */
|
|
/** 运力详情 */
|
|
|
find_truck_info: {
|
|
find_truck_info: {
|
|
|
- realUrl: '/tms/worker/find_truck_info' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/worker/find_truck_info',
|
|
|
reqType: {} as WorkerInfo,
|
|
reqType: {} as WorkerInfo,
|
|
|
resType: {} as WorkerInfo,
|
|
resType: {} as WorkerInfo,
|
|
|
},
|
|
},
|
|
|
/** 查询作业点位置信息 */
|
|
/** 查询作业点位置信息 */
|
|
|
find_work_spot_info: {
|
|
find_work_spot_info: {
|
|
|
- realUrl: '/tms/worker/find_work_spot_info' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/worker/find_work_spot_info',
|
|
|
reqType: {} as WorkSpot对象,
|
|
reqType: {} as WorkSpot对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 8.上传签名,完成本行车周期,收车 */
|
|
/** 8.上传签名,完成本行车周期,收车 */
|
|
|
finish_cycle: {
|
|
finish_cycle: {
|
|
|
- realUrl: '/tms/worker/finish_cycle' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/worker/finish_cycle',
|
|
|
reqType: {} as UpSignParam,
|
|
reqType: {} as UpSignParam,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 4.确认完成运单 */
|
|
/** 4.确认完成运单 */
|
|
|
finish_order: {
|
|
finish_order: {
|
|
|
- realUrl: '/tms/worker/finish_order' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/worker/finish_order',
|
|
|
reqType: {} as WorkOrder对象,
|
|
reqType: {} as WorkOrder对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 7.完成检查,结束此次行程 */
|
|
/** 7.完成检查,结束此次行程 */
|
|
|
finish_work: {
|
|
finish_work: {
|
|
|
- realUrl: '/tms/worker/finish_work' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/worker/finish_work',
|
|
|
reqType: {} as TruckCheckInfo对象,
|
|
reqType: {} as TruckCheckInfo对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 1.开始执行装卸车运单 */
|
|
/** 1.开始执行装卸车运单 */
|
|
|
start_order: {
|
|
start_order: {
|
|
|
- realUrl: '/tms/worker/start_order' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/worker/start_order',
|
|
|
reqType: {} as WorkOrder对象,
|
|
reqType: {} as WorkOrder对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 3.上报已到达装卸车点 */
|
|
/** 3.上报已到达装卸车点 */
|
|
|
start_wait: {
|
|
start_wait: {
|
|
|
- realUrl: '/tms/worker/start_wait' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/worker/start_wait',
|
|
|
reqType: {} as WorkOrder对象,
|
|
reqType: {} as WorkOrder对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 2.完成出车前检查,开始装卸车作业 */
|
|
/** 2.完成出车前检查,开始装卸车作业 */
|
|
|
start_work: {
|
|
start_work: {
|
|
|
- realUrl: '/tms/worker/start_work' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/worker/start_work',
|
|
|
reqType: {} as TruckCheckInfo对象,
|
|
reqType: {} as TruckCheckInfo对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 4.结束等待,开始上传磅单 */
|
|
/** 4.结束等待,开始上传磅单 */
|
|
|
submit_result: {
|
|
submit_result: {
|
|
|
- realUrl: '/tms/worker/submit_result' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/worker/submit_result',
|
|
|
reqType: {} as WorkOrder对象,
|
|
reqType: {} as WorkOrder对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 每个作业上报单独小按钮使用 */
|
|
/** 每个作业上报单独小按钮使用 */
|
|
|
update_order: {
|
|
update_order: {
|
|
|
- realUrl: '/tms/worker/update_order' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/worker/update_order',
|
|
|
reqType: {} as WorkOrder对象,
|
|
reqType: {} as WorkOrder对象,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|
|
|
/** 获取行车日志列表 */
|
|
/** 获取行车日志列表 */
|
|
|
work_log_list: {
|
|
work_log_list: {
|
|
|
- realUrl: '/tms/worker/work_log_list' as const,
|
|
|
|
|
|
|
+ realUrl: '/tms/worker/work_log_list',
|
|
|
reqType: {} as IPageParams<WorkLog对象>,
|
|
reqType: {} as IPageParams<WorkLog对象>,
|
|
|
resType: {} as any,
|
|
resType: {} as any,
|
|
|
},
|
|
},
|