收货仓库列表
<p><strong>简要描述:</strong> </p>
<ul>
<li>收货仓列表接口</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>http://xx.com/store/sales-order-app/receipt-warehouse-list</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST </li>
</ul>
<p><strong>参数:</strong> </p>
<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;">buy_org_id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>门店id(账套id)</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code>{
"errCode": 1000,
"errMsg": "请求成功",
"data": [
{
"id": "267",
"org_id": "33",
"name": "张庄一店",
"contact_name": "王浩",
"contact_mobile": "18663789077",
"province": "370000000",
"city": "371200000",
"district": null,
"town": null,
"address": "新老屯汽配城东区19号",
"address_area": "山东省莱芜市新老屯汽配城东区19号",
"is_sale": "1",
"is_abnormal": "2",
"is_top": 1
},
{
"id": "1",
"org_id": "33",
"name": "阳光工匠仓",
"contact_name": "张忠梅",
"contact_mobile": "18615256496",
"province": "370000000",
"city": "370100000",
"district": "370104000",
"town": null,
"address": "济南市槐荫区经十西路29462号",
"address_area": "山东省济南市槐荫区济南市槐荫区经十西路29462号",
"is_sale": "1",
"is_abnormal": "2",
"is_top": 0
}
]
}</code></pre>
<p><strong>请求返回参数说明</strong> </p>
<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;">id</td>
<td style="text-align: left;">int</td>
<td>仓库ID</td>
</tr>
<tr>
<td style="text-align: left;">is_top</td>
<td style="text-align: left;">int</td>
<td>默认仓库标识 1</td>
</tr>
<tr>
<td style="text-align: left;">name</td>
<td style="text-align: left;">string</td>
<td>仓库名称</td>
</tr>
</tbody>
</table>
<p><strong>备注</strong> </p>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>