装车单接收
<h5>简要描述</h5>
<ul>
<li>装车计划保存的接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>delivery/loading/tms/receive</code> </li>
</ul>
<h5>请求方式</h5>
<ul>
<li>post</li>
</ul>
<h5>Header</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">header</th>
<th style="text-align: left;">必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">type</td>
<td style="text-align: left;">是</td>
<td>string</td>
<td>策略类型(normalDelivery)</td>
</tr>
</tbody>
</table>
<h5>请求参数示例</h5>
<pre><code>{&quot;no&quot;:“XXX001”,&quot;dock&quot;:{&quot;no&quot;:&quot;1001&quot;},&quot;distributionType&quot;:1,&quot;orderType&quot;:{&quot;no&quot;:&quot;装车单&quot;}, &quot;details&quot;:[{&quot;shipmentOrder&quot;:{&quot;storer&quot;:{&quot;no&quot;:&quot;101&quot;},&quot;no&quot;:&quot;CKD000001&quot;},&quot;ordinal&quot;:1 },{&quot;shipmentOrder&quot;:{&quot;storer&quot;:{&quot;no&quot;:&quot;101&quot;},&quot;no&quot;:&quot;CKD000002&quot;},&quot;ordinal&quot;:2 }] }
</code></pre>
<h5>成功返回示例</h5>
<pre><code>{
&quot;success&quot;: true,
&quot;result&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;">success</td>
<td style="text-align: left;">boolean</td>
<td>成功标识</td>
</tr>
<tr>
<td style="text-align: left;">result</td>
<td style="text-align: left;">json</td>
<td>结果集</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<p>distributionType--分销类型:1->自提,2->配送,3->托运 ; dock--码头编号: 装车时车辆停靠码头 ;storer--货主;ordinal:装车顺序 int类型</p>