获取订单信息核销记录分页列表接口
<p><strong>接口说明 </strong></p>
<pre><code>请求接口: /community/verify/list
请求方式: GET
接口说明: 获取订单信息核销记录分页列表接口</code></pre>
<p><strong>请求参数 </strong></p>
<table>
<thead>
<tr>
<th>参数名</th>
<th>必选</th>
<th>长度</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>token</td>
<td>是</td>
<td>150</td>
<td>string</td>
<td>用户token</td>
</tr>
<tr>
<td>page</td>
<td>是</td>
<td>4</td>
<td>int</td>
<td>页码</td>
</tr>
<tr>
<td>limit</td>
<td>是</td>
<td>4</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>data</td>
<td>string</td>
<td>返回数据</td>
</tr>
<tr>
<td>orderId</td>
<td>int</td>
<td>订单id</td>
</tr>
<tr>
<td>orderNo</td>
<td>string</td>
<td>积分订单号</td>
</tr>
<tr>
<td>serviceId</td>
<td>int</td>
<td>社区服务id</td>
</tr>
<tr>
<td>serviceCode</td>
<td>string</td>
<td>社区服务编号</td>
</tr>
<tr>
<td>serviceTitle</td>
<td>string</td>
<td>社区服务标题</td>
</tr>
<tr>
<td>shopId</td>
<td>string</td>
<td>商户id</td>
</tr>
<tr>
<td>shopName</td>
<td>string</td>
<td>核销商户名称</td>
</tr>
<tr>
<td>shopAccount</td>
<td>string</td>
<td>核销商户账号</td>
</tr>
<tr>
<td>shopUserName</td>
<td>string</td>
<td>核销商户人员姓名</td>
</tr>
<tr>
<td>shopUserPhone</td>
<td>string</td>
<td>核销商户人员手机号</td>
</tr>
<tr>
<td>usedTime</td>
<td>string</td>
<td>核销时间</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code>{
"code":"0000",
"msg":"success",
"data":{
"count": 4,
"size": 2,
"pageIndex": 1,
"hasElse": true,
"items":[{
"orderId":1,
"orderNo":"11123",
"serviceId":1,
"serviceCode":"sadsar324",
"serviceTitle":"啊实打实",
"shopId":2,
"shopName":"店铺",
"shopAccount":"koasd",
"shopUserName":"张三",
"shopUserPhone":"13955854125",
"usedTime":"2020-03-12 12:00:00"
}]
}
}</code></pre>