|
|
|
@@ -30,8 +30,10 @@ public class WxCouponPassword extends BaseEntity { |
|
|
|
@Excel(name = "兑换码", width = 20, orderNum = "1") |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="商户名称",name="password") |
|
|
|
private String password; |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="卡密状态: 0初始1信息发出中2信息已发出3已使用",name="status") |
|
|
|
@Excel(name = "状态", width = 20, replace = {"初始_0", "发送中_1", "已发出_2", "已使用_3", "不可用_4"}, orderNum = "3") |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="卡密状态: 0初始1信息发出中2信息已发出3已使用4已过期",name="status") |
|
|
|
private Integer status; |
|
|
|
@Excel(name = "发送手机", width = 20, orderNum = "4") |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="卡密发送到手机",name="sendedPhone") |
|
|
|
private String sendedPhone; |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="卡包ID(coupon_order_id/card_id)",name="cardId") |
|
|
|
@@ -40,6 +42,7 @@ public class WxCouponPassword extends BaseEntity { |
|
|
|
private Date createDate; |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="更新时间",name="updateDate") |
|
|
|
private Date updateDate; |
|
|
|
@Excel(name="过期时间",width = 20,format="yyyy-MM-dd", orderNum = "2") |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="过期时间",name="expireDate") |
|
|
|
private Date expireDate; |
|
|
|
|
|
|
|
|