获取打卡活动地点详情
<h2>获取打卡活动地点详情</h2>
<pre><code>url: /welfare/activitypunch/info
请求方式: GET
说明: 需登录 获取打卡活动地点详情</code></pre>
<p>入参参数说明:</p>
<table>
<thead>
<tr>
<th>参数名</th>
<th>必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>punchLocationId</td>
<td>是</td>
<td>Long</td>
<td>打卡点id</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>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code>{
"code": "0000",
"msg": "操作成功!",
"data": {
"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
}
}</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>
<tr>
<td>creator</td>
<td>String</td>
<td>创建人</td>
</tr>
<tr>
<td>createTime</td>
<td>datetime</td>
<td>创建时间</td>
</tr>
<tr>
<td>modifier</td>
<td>String</td>
<td>修改人</td>
</tr>
<tr>
<td>modifyTime</td>
<td>datetime</td>
<td>修改时间</td>
</tr>
</tbody>
</table>