查询车辆详细信息
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>查询车辆详细信息接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>/car/getCarInfo</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<h5>参数</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">token</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>用户token</td>
</tr>
<tr>
<td style="text-align: left;">CarId</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>车辆ID</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code>{
&quot;code&quot;: 200,
&quot;msg&quot;: &quot;查询成功&quot;,
&quot;result&quot;: {
&quot;CarId&quot;: 1,
&quot;CarType&quot;: &quot;1&quot;,
&quot;CarBrand&quot;: &quot;奥迪&quot;,
&quot;CarNumber&quot;: &quot;12345&quot;,
&quot;CarFrameNumber&quot;: &quot;红色&quot;,
&quot;CarColor&quot;: null,
&quot;CarInsure&quot;: null,
&quot;CarInsureNumber&quot;: null,
&quot;CarServiceInterval&quot;: null,
&quot;CarMileage&quot;: null,
&quot;CarEngineNum&quot;: null,
&quot;CarEngineType&quot;: null,
&quot;CarEngineDisplacement&quot;: null,
&quot;CarCaseType&quot;: null,
&quot;CarSeat&quot;: null,
&quot;CarStatus&quot;: null,
&quot;CarBuyDate&quot;: null,
&quot;CarInsureStart&quot;: null,
&quot;CarInsureEnd&quot;: null,
&quot;CreateDate&quot;: null,
&quot;UpdateDate&quot;: null
}
}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">CarStatus</td>
<td style="text-align: left;">string</td>
<td>车辆状态 1=正常 2=维修中 3=报废</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>