分页
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>分页</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>/system/userCoupon/list</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>GET </li>
</ul>
<h5>参数</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">pageNum</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;"></td>
<td></td>
</tr>
<tr>
<td style="text-align: left;">pageSize</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;"></td>
<td></td>
</tr>
<tr>
<td style="text-align: left;">operator</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">string</td>
<td>运营商</td>
</tr>
<tr>
<td style="text-align: left;">agent</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">String</td>
<td>代理商</td>
</tr>
<tr>
<td style="text-align: left;">couponName</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">string</td>
<td>优惠券名称</td>
</tr>
<tr>
<td style="text-align: left;">couponType</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">string</td>
<td>优惠券类型 1代金券 2折扣券</td>
</tr>
<tr>
<td style="text-align: left;">useFlag</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">String</td>
<td>是否使用 1待使用 2已使用</td>
</tr>
<tr>
<td style="text-align: left;">activityId</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">Long</td>
<td>优惠券活动id</td>
</tr>
</tbody>
</table>
<h5>请求示例</h5>
<pre><code></code></pre>
<h5>返回示例</h5>
<pre><code>{
&quot;total&quot;: 2,
&quot;rows&quot;: [
{
&quot;createBy&quot;: &quot;admin&quot;,
&quot;createTime&quot;: &quot;2025-03-21 13:46:53&quot;,
&quot;updateBy&quot;: null,
&quot;updateTime&quot;: null,
&quot;remark&quot;: &quot;23232&quot;,
&quot;id&quot;: 1,
&quot;operator&quot;: &quot;运营商1&quot;,
&quot;agent&quot;: &quot;代理商1&quot;,
&quot;userId&quot;: 1,
&quot;userNickName&quot;: &quot;若依&quot;,
&quot;userName&quot;: &quot;admin&quot;,
&quot;phone&quot;: &quot;12332222&quot;,
&quot;couponId&quot;: 5,
&quot;couponName&quot;: &quot;优惠券1&quot;,
&quot;remainDays&quot;: null,
&quot;couponType&quot;: &quot;1&quot;,
&quot;useLimit&quot;: &quot;1&quot;,
&quot;thresholdAmount&quot;: 23300.00,
&quot;number&quot;: 34.00,
&quot;receiveType&quot;: &quot;1&quot;,
&quot;useFlag&quot;: &quot;1&quot;,
&quot;state&quot;: &quot;1&quot;
},
{
&quot;createBy&quot;: &quot;admin&quot;,
&quot;createTime&quot;: &quot;2025-03-21 14:14:27&quot;,
&quot;updateBy&quot;: null,
&quot;updateTime&quot;: null,
&quot;remark&quot;: &quot;23232&quot;,
&quot;id&quot;: 2,
&quot;operator&quot;: &quot;运营商1&quot;,
&quot;agent&quot;: &quot;代理商1&quot;,
&quot;userId&quot;: 1,
&quot;userNickName&quot;: &quot;若依&quot;,
&quot;userName&quot;: &quot;admin&quot;,
&quot;phone&quot;: &quot;12332222&quot;,
&quot;couponId&quot;: 4,
&quot;couponName&quot;: &quot;优惠券1&quot;,
&quot;remainDays&quot;: 44,
&quot;couponType&quot;: &quot;1&quot;,
&quot;useLimit&quot;: &quot;1&quot;,
&quot;thresholdAmount&quot;: 23300.00,
&quot;number&quot;: 34.00,
&quot;receiveType&quot;: &quot;1&quot;,
&quot;useFlag&quot;: &quot;1&quot;,
&quot;state&quot;: &quot;1&quot;
}
],
&quot;code&quot;: 200,
&quot;msg&quot;: &quot;查询成功&quot;
}</code></pre>
<p>参数说明</p>
<pre><code>/** 主键 */
private Long id;
/** 运营商 */
@Excel(name = &quot;运营商&quot;)
private String operator;
/** 代理商 */
@Excel(name = &quot;代理商&quot;)
private String agent;
/** 用户id */
@Excel(name = &quot;用户id&quot;)
private Long userId;
/** 用户昵称 */
@Excel(name = &quot;用户昵称&quot;)
private String userNickName;
/** 用户姓名 */
@Excel(name = &quot;用户姓名&quot;)
private String userName;
/** 手机号 */
@Excel(name = &quot;手机号&quot;)
private String phone;
/** 优惠券id */
@Excel(name = &quot;优惠券id&quot;)
private Long couponId;
/** 优惠券名称 */
@Excel(name = &quot;优惠券名称&quot;)
private String couponName;
/** 剩余使用天数 */
@Excel(name = &quot;剩余使用天数&quot;)
private Long remainDays;
/** 优惠券类型 1代金券 2折扣券 */
@Excel(name = &quot;优惠券类型 1代金券 2折扣券&quot;)
private String couponType;
/** 使用限制 1购买套餐 2即时支付 3通用 */
@Excel(name = &quot;使用限制 1购买套餐 2即时支付 3通用&quot;)
private String useLimit;
/** 门槛金额 */
@Excel(name = &quot;门槛金额&quot;)
private BigDecimal thresholdAmount;
/** 数值 */
@Excel(name = &quot;数值&quot;)
private BigDecimal number;
/** 领取方式 1赠送 2兑换码领取 3直接领取 */
@Excel(name = &quot;领取方式 1赠送 2兑换码领取 3直接领取&quot;)
private String receiveType;
/** 是否使用 1待使用 2已使用 */
@Excel(name = &quot;是否使用 1待使用 2已使用&quot;)
private String useFlag;
/** 是否回收 1未回收 2已回收 */
@Excel(name = &quot;是否回收 1未回收 2已回收&quot;)
private String state;</code></pre>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>