业务区域
<p><strong>简要描述:</strong> </p>
<ul>
<li>业务区域列表接口</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>http://xxxxx/dms/sales-order-app/get-customer-area</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;">user_id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>登录用户id</td>
</tr>
<tr>
<td style="text-align: left;">type</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>1加盟店 2直营店</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code>{
&quot;errCode&quot;: 1000,
&quot;errMsg&quot;: &quot;请求成功&quot;,
&quot;data&quot;: {
&quot;list&quot;: [
{
&quot;id&quot;: &quot;138&quot;,
&quot;name&quot;: &quot;gyn-市内21区&quot;
},
{
&quot;id&quot;: &quot;141&quot;,
&quot;name&quot;: &quot;by-北园店内&quot;
},
{
&quot;id&quot;: &quot;142&quot;,
&quot;name&quot;: &quot;GX-于朴亮&quot;
},
{
&quot;id&quot;: &quot;143&quot;,
&quot;name&quot;: &quot;by-市内大客户&quot;
},
{
&quot;id&quot;: &quot;148&quot;,
&quot;name&quot;: &quot;前置仓-解放东路仓&quot;
},
{
&quot;id&quot;: &quot;152&quot;,
&quot;name&quot;: &quot;by-市内20区&quot;
},
{
&quot;id&quot;: &quot;153&quot;,
&quot;name&quot;: &quot;GYN-A-刘云龙&quot;
}
]
}
}</code></pre>
<p><strong>请求返回参数说明</strong> </p>
<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;">name</td>
<td style="text-align: left;">string</td>
<td>区域名称</td>
</tr>
</tbody>
</table>
<p><strong>备注</strong> </p>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>