分页获取打卡活动地点列表
<h2>分页获取打卡活动地点列表</h2>
<pre><code>url: /welfare/activitypunch/list
请求方式: POST
说明: 需登录 分页获取打卡活动地点列表</code></pre>
<p>入参参数说明:</p>
<table>
<thead>
<tr>
<th>参数名</th>
<th>必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>page</td>
<td>是</td>
<td>int</td>
<td>页码,从1开始</td>
</tr>
<tr>
<td>limit</td>
<td>是</td>
<td>int</td>
<td>每页数量</td>
</tr>
</tbody>
</table>
<p><strong>返回参数说明</strong></p>
<table>
<thead>
<tr>
<th>参数名</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>code</td>
<td>String</td>
<td>状态值</td>
</tr>
<tr>
<td>msg</td>
<td>String</td>
<td>返回消息</td>
</tr>
<tr>
<td>total</td>
<td>int</td>
<td>总条目</td>
</tr>
<tr>
<td>rows</td>
<td>list</td>
<td>本页数据内容</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code>{
"code": "0000",
"msg": "操作成功!",
"data": {
"count": 2,
"size": 2,
"pageIndex": 1,
"hasElse": false,
"items": [
{
"id": 6,
"activityId": "2",
"locationCode": "123124871231",
"locationName": "打卡点2",
"locationInfo": "浙江省宁波市鄞州区XXXX",
"longitude": "125.25",
"latitude": "48.5",
"punchCount": 0,
"logo": "https://www.showdoc.cc/page/edit/544566125614467/0"
},
{
"id": 7,
"activityId": "2",
"locationCode": "1231241231",
"locationName": "打卡点1",
"locationInfo": "浙江省宁波市鄞州区XXXX",
"longitude": "127.25",
"latitude": "45.5",
"punchCount": 0,
"logo": "https://www.showdoc.cc/page/edit/544566125614467/0"
}
]
}
}</code></pre>
<table>
<thead>
<tr>
<th>参数名</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>id</td>
<td>Long</td>
<td>主键</td>
</tr>
<tr>
<td>activityId</td>
<td>Long</td>
<td>打卡活动id</td>
</tr>
<tr>
<td>locationCode</td>
<td>String</td>
<td>打卡地点编号</td>
</tr>
<tr>
<td>locationName</td>
<td>String</td>
<td>打卡地点名称</td>
</tr>
<tr>
<td>locationInfo</td>
<td>String</td>
<td>详细位置信息</td>
</tr>
<tr>
<td>longitude</td>
<td>String</td>
<td>经度</td>
</tr>
<tr>
<td>latitude</td>
<td>String</td>
<td>纬度</td>
</tr>
<tr>
<td>punchCount</td>
<td>Integer</td>
<td>打卡人数</td>
</tr>
<tr>
<td>logo</td>
<td>String</td>
<td>打卡点logo图片地址</td>
</tr>
</tbody>
</table>