详情
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>详情</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>/system/sendCoupon/{id}</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;">id</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;msg&quot;: &quot;操作成功&quot;,
&quot;code&quot;: 200,
&quot;data&quot;: {
&quot;createBy&quot;: &quot;admin&quot;,
&quot;createTime&quot;: &quot;2025-03-21 11:03:52&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;useFlag&quot;: &quot;1&quot;,
&quot;state&quot;: &quot;1&quot;
}
}</code></pre>
<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 useFlag;
/** 是否回收 1未回收 2已回收 */
@Excel(name = &quot;是否回收 1未回收 2已回收&quot;)
private String state;</code></pre>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>