5.5 获取门店列表
<h3>5.5 获取门店列表</h3>
<p>> - Url路径:api/store/list</p>
<h4>5.5.1 接口请求模型</h4>
<table>
<thead>
<tr>
<th>参数代码 </th>
<th>参数类型参数类型 </th>
<th>参数长度</th>
<th>代码标识说明</th>
<th>是否非空</th>
<th>说明 </th>
</tr>
</thead>
<tbody>
<tr>
<td>isDelivery </td>
<td>int </td>
<td>1 </td>
<td>Y </td>
<td>Y </td>
<td>仅查询支持配送(默认0:否,1:是) </td>
</tr>
</tbody>
</table>
<h4>5.5.2 接口返回模型</h4>
<table>
<thead>
<tr>
<th>参数代码</th>
<th>参数类型参数类型 </th>
<th>参数长度</th>
<th>代码标识说明</th>
<th>是否非空</th>
<th>说明 </th>
</tr>
</thead>
<tbody>
<tr>
<td>branchs </td>
<td>List<getBranchModel></td>
<td> </td>
<td> </td>
<td>Y </td>
<td>符合条件的门店列表</td>
</tr>
</tbody>
</table>
<p>Demo:</p>
<pre><code>Request:
{
&quot;appKey&quot;:&quot;NepHealth&quot;,
&quot;nonce&quot;:&quot;Tdsad2saa2a&quot;,
&quot;timestamp&quot;:1639119614,
&quot;sign&quot;:&quot;a1f8f760de8edfe74b3b7bb9d9c51e4379abfbdb1&quot;,
&quot;input&quot;:{
&quot;isDelivery&quot;:0
}
}
Response:
{
&quot;code&quot;: 200,
&quot;msg&quot;: &quot;ok&quot;,
&quot;nonce&quot;: &quot;Tdsad2saa2a&quot;,
&quot;output&quot;: {
&quot;branchs&quot;: [{
&quot;isCenter&quot;: 0,
&quot;tel&quot;: &quot;0755-86575574&quot;,
&quot;stateId&quot;: 98,
&quot;cityId&quot;: 903,
&quot;pharmacyCode&quot;: &quot;SA79&quot;,
&quot;longitude&quot;: 114.137994,
&quot;latitude&quot;: 22.624985
}]
}
}</code></pre>