新增
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>新增</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>/system/coupon</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<h5>参数</h5>
<pre><code>/** 主键 */
private Long id;
/** 优惠券类型 1换电 2租车 */
@Excel(name = &quot;优惠券分类 1换电 2租车&quot;)
private String couponClassify;
/** 运营商 */
@Excel(name = &quot;运营商&quot;)
private String operator;
/** 代理商 */
@Excel(name = &quot;代理商&quot;)
private String agent;
/** 优惠券名称 */
@Excel(name = &quot;优惠券名称&quot;)
private String couponName;
/** 优惠券类型 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;
/** 有效天数 */
@Excel(name = &quot;有效天数&quot;)
private Long effectiveDays;
/** 有效天数限制 1有 2无 */
@Excel(name = &quot;有效天数限制 1有 2无&quot;)
private String limitState;
/** 状态 1上架 2下架 */
@Excel(name = &quot;状态 1上架 2下架&quot;)
private String state;</code></pre>
<h5>请求示例</h5>
<pre><code>{
&quot;couponClassify&quot;:&quot;1&quot;,
&quot;operatorId&quot;: 1,
&quot;agentId&quot;:1,
&quot;operator&quot;: &quot;运营商1&quot;,
&quot;agent&quot;:&quot;代理商1&quot;,
&quot;couponName&quot;:&quot;优惠券1&quot;,
&quot;couponType&quot;:&quot;1&quot;,
&quot;useLimit&quot;:&quot;1&quot;,
&quot;thresholdAmount&quot;: 23300,
&quot;number&quot;:34,
&quot;effectiveDays&quot;:44,
&quot;limitState&quot;:1,
&quot;remark&quot;:&quot;22ss211ddd&quot;
}</code></pre>
<h5>返回示例</h5>
<pre><code>{
&quot;msg&quot;: &quot;操作成功&quot;,
&quot;code&quot;: 200
}</code></pre>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>