文档
测试

车辆类型查询

POST
http://127.0.0.1:8080/app/vehicletype/getVehicleTypeList

接口描述

通过轴数查询车辆类型和限重 轴数为必填

请求参数

参数名
类型
描述
必填
axles
string
轴数
必填

响应参数

参数名
类型
描述
必填
success
boolean
示例:true
必填
errorCode
string
示例:-1
必填
msg
string
示例:查询成功
必填
list
array
数据列表
必填
weightlimit
number
示例:43
必填
name
string
示例:中置轴挂车列车5_43
必填
axles
string
示例:4
必填
total
number
示例:0
必填

说明 / 示例

{ "success": true, "errorCode": "-1", "msg": "查询成功", "list": [ { "weightlimit": 43, //限重 "name": "中置轴挂车列车5_43", //车辆类型name "id": 7, //车辆类型id "axles": "4" //轴数 }, { "weightlimit": 43, "name": "铰接列车5_43", "id": 13, "axles": "4" }, { "weightlimit": 42, "name": "铰接列车5_42", "id": 15, "axles": "4" }, { "weightlimit": 43, "name": "全挂汽车列车5_43", "id": 16, "axles": "4" } ], "total": 0 }