获取排队信息
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>道闸出入厂查询</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://192.168.0.239:8080/sf_public?url=sf_ObtainQueueInformation_db</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<h5>参数</h5>
<pre><code>{
&quot;fxyz_carno&quot;:&quot;京A11111&quot;, //车号
&quot;fxyz_base&quot;:&quot;2007903448573411328&quot; //基地ID
}</code></pre>
<h5>返回示例</h5>
<pre><code>成功
{
&quot;data&quot;: {
&quot;output&quot;: {
&quot;res&quot;: {
&quot;data&quot;: [
{
&quot;fxyz_carno&quot;: &quot;新A11111&quot;, //车号
&quot;fxyz_queuetype&quot;: &quot;0&quot;, //业务类型枚举 0送货 1提货
&quot;fxyz_type&quot;: &quot;送货&quot;, //业务类型
&quot;fxyz_billno&quot;: &quot;PDXX-2024-09-02-0055&quot;, //排队编码
&quot;fxyz_grossweight&quot;:&quot;300&quot;, //送货排队预填毛重
&quot;fxyz_callposition&quot;: &quot;原料一库&quot; //装卸仓位 没值的时候为 &quot;&quot;
}
],
&quot;success&quot;: true,
&quot;message&quot;: &quot;找到排队记录&quot;
}
},
&quot;id&quot;: &quot;2030568910595555328&quot;
},
&quot;errorCode&quot;: &quot;0&quot;,
&quot;status&quot;: true
}
失败
{
&quot;data&quot;: {
&quot;output&quot;: {
&quot;res&quot;: {
&quot;data&quot;: [],
&quot;success&quot;: false,
&quot;message&quot;: &quot;没有找到排队记录&quot;
}
},
&quot;id&quot;: &quot;2030570598249267200&quot;
},
&quot;errorCode&quot;: &quot;0&quot;,
&quot;status&quot;: true
}
</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;"></td>
<td style="text-align: left;"></td>
<td></td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>