转移地点
<p>[TOC]</p>
<h1>- 转移地点列表</h1>
<p>请求URL</p>
<ul>
<li>
<p><code>http://127.0.0.1:8086/system/lxYjzhZydd/list</code></p>
<p>请求方式</p>
</li>
<li>
<p>get</p>
<p>请求Query参数</p>
</li>
</ul>
<table>
<thead>
<tr>
<th>参数名</th>
<th>示例值</th>
<th>必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>pageNumber</td>
<td>1</td>
<td>是</td>
<td>string</td>
<td>无</td>
</tr>
<tr>
<td>pageSize</td>
<td>10</td>
<td>是</td>
<td>string</td>
<td>无</td>
</tr>
<tr>
<td>stree</td>
<td></td>
<td>否</td>
<td>string</td>
<td>街道</td>
</tr>
<tr>
<td>transfer</td>
<td></td>
<td>否</td>
<td>string</td>
<td>转移地点</td>
</tr>
</tbody>
</table>
<p>成功返回示例</p>
<pre><code>{
"code": "0000",
"result": {
"pageData": {
"records": [
{
"id": 82,
"stree": "龙洞街道办事处",
"transfer": "山大辅仁",
"lon": "117.09149",
"lat": "36.64244"
},
{
"id": 81,
"stree": "龙洞街道办事处",
"transfer": "山大辅仁",
"lon": "117.09118",
"lat": "36.64406"
},
{
"id": 80,
"stree": "龙洞街道办事处",
"transfer": "山大辅仁",
"lon": "117.09141",
"lat": "36.64239"
},
{
"id": 79,
"stree": "龙洞街道办事处",
"transfer": "山大辅仁",
"lon": "117.09189",
"lat": "36.64383"
},
{
"id": 78,
"stree": "龙洞街道办事处",
"transfer": "山大辅仁",
"lon": "117.09217",
"lat": "36.64364"
},
{
"id": 77,
"stree": "龙洞街道办事处",
"transfer": "山大辅仁",
"lon": "117.09262",
"lat": "36.64395"
},
{
"id": 76,
"stree": "东关",
"transfer": "济南康复医院",
"lon": "117.03912",
"lat": "36.67493"
},
{
"id": 75,
"stree": "智远办事处",
"transfer": "邓家庄村委",
"lon": "117.11391",
"lat": "36.69593"
},
{
"id": 74,
"stree": "智远办事处",
"transfer": "八涧堡村委",
"lon": "117.11191",
"lat": "36.70036"
},
{
"id": 73,
"stree": "智远办事处",
"transfer": "义和宾馆",
"lon": "117.14615",
"lat": "36.69688"
}
],
"total": 82,
"size": 10,
"current": 1,
"orders": [],
"optimizeCountSql": true,
"hitCount": false,
"searchCount": true,
"pages": 9
}
}
}</code></pre>
<p>成功返回示例的参数说明</p>
<table>
<thead>
<tr>
<th>参数名</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>pageData.records.id</td>
<td>string</td>
<td>无</td>
</tr>
<tr>
<td>pageData.records.stree</td>
<td>string</td>
<td>街道</td>
</tr>
<tr>
<td>pageData.records.transfer</td>
<td>string</td>
<td>转移地点</td>
</tr>
<tr>
<td>pageData.records.lon</td>
<td>string</td>
<td>经度</td>
</tr>
<tr>
<td>pageData.records.lat</td>
<td>string</td>
<td>纬度</td>
</tr>
</tbody>
</table>
<h1>- 转移地点详情</h1>
<p>请求URL</p>
<ul>
<li>
<p><code>http://127.0.0.1:8086/system/lxYjzhZydd/get</code></p>
<p>请求方式</p>
</li>
<li>
<p>post</p>
<p>请求Body参数</p>
</li>
</ul>
<table>
<thead>
<tr>
<th>参数名</th>
<th>示例值</th>
<th>必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>id</td>
<td>3</td>
<td>是</td>
<td>string</td>
<td>无</td>
</tr>
</tbody>
</table>
<p>成功返回示例</p>
<pre><code>{
"code": "0000",
"result": {
"lxYjzhZyddData": {
"id": 3,
"stree": "趵突泉街道",
"transfer": "尚客优酒店",
"lon": "117.01411",
"lat": "36.66391"
}
}
}</code></pre>
<p>成功返回示例的参数说明</p>
<table>
<thead>
<tr>
<th>参数名</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>lxYjzhZyddData.id</td>
<td>string</td>
<td>无</td>
</tr>
<tr>
<td>lxYjzhZyddData.stree</td>
<td>string</td>
<td>街道</td>
</tr>
<tr>
<td>lxYjzhZyddData.transfer</td>
<td>string</td>
<td>转移地点</td>
</tr>
<tr>
<td>lxYjzhZyddData.lon</td>
<td>string</td>
<td>经度</td>
</tr>
<tr>
<td>lxYjzhZyddData.lat</td>
<td>string</td>
<td>纬度</td>
</tr>
</tbody>
</table>
<h1>- 转移地点新增</h1>
<p>请求URL</p>
<ul>
<li><code>http://127.0.0.1:8086/system/lxYjzhZydd/save</code>
请求方式
post
请求Body参数</li>
</ul>
<table>
<thead>
<tr>
<th>参数名</th>
<th>示例值</th>
<th>必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>stree</td>
<td>1</td>
<td>否</td>
<td>string</td>
<td>街道</td>
</tr>
<tr>
<td>transfer</td>
<td>1</td>
<td>否</td>
<td>string</td>
<td>转移地点</td>
</tr>
<tr>
<td>lon</td>
<td>1</td>
<td>否</td>
<td>string</td>
<td>经度</td>
</tr>
<tr>
<td>lat</td>
<td>1</td>
<td>否</td>
<td>string</td>
<td>纬度</td>
</tr>
</tbody>
</table>
<h1>- 转移地点删除</h1>
<p>请求URL</p>
<ul>
<li><code>http://127.0.0.1:8086/system/lxYjzhZydd/delete</code>
请求方式
post
请求Body参数</li>
</ul>
<table>
<thead>
<tr>
<th>参数名</th>
<th>示例值</th>
<th>必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>id</td>
<td>1</td>
<td>是</td>
<td>string</td>
<td>无</td>
</tr>
</tbody>
</table>