城市列表
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>获取城市列表接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://localhost:12345/api/city/list</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>GET </li>
</ul>
<h5>参数</h5>
<p>无</p>
<h5>返回示例</h5>
<pre><code>{
&quot;err_code&quot;: 0,
&quot;msg&quot;: &quot;获取成功!&quot;,
&quot;data&quot;: {
&quot;hotCities&quot;: [
{
&quot;name&quot;: &quot;北京&quot;
},
{
&quot;name&quot;: &quot;上海&quot;
},
{
&quot;name&quot;: &quot;广州&quot;
},
{
&quot;name&quot;: &quot;深圳&quot;
},
{
&quot;name&quot;: &quot;南京&quot;
},
{
&quot;name&quot;: &quot;武汉&quot;
},
{
&quot;name&quot;: &quot;杭州&quot;
},
{
&quot;name&quot;: &quot;西安&quot;
},
{
&quot;name&quot;: &quot;郑州&quot;
},
{
&quot;name&quot;: &quot;成都&quot;
},
{
&quot;name&quot;: &quot;长沙&quot;
},
{
&quot;name&quot;: &quot;天津&quot;
}
],
&quot;cityList&quot;: [
{
&quot;citys&quot;: [
{
&quot;name&quot;: &quot;安顺&quot;
},
{
&quot;name&quot;: &quot;安阳&quot;
},
{
&quot;name&quot;: &quot;鞍山&quot;
},
{
&quot;name&quot;: &quot;安图&quot;
},
{
&quot;name&quot;: &quot;安多&quot;
}
],
&quot;title&quot;: &quot;A&quot;
},
{
&quot;citys&quot;: [
{
&quot;name&quot;: &quot;霸州&quot;
},
...
]
},
...
]
}
}</code></pre>