|
|
|
@@ -47,9 +47,7 @@ public class WxCouponSend implements Serializable { |
|
|
|
/*卡券id**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="卡券id",name="couponId") |
|
|
|
private Long couponId; |
|
|
|
/*券类型(1.满减券,2.代金券,3.团购券,4.礼品券,5.停车券)**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="券类型(1.满减券,2.代金券,3.团购券,4.礼品券,5.停车券)",name="type") |
|
|
|
private Integer type; |
|
|
|
|
|
|
|
/*券名称**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="券名称",name="title") |
|
|
|
private String title; |
|
|
|
@@ -59,12 +57,7 @@ public class WxCouponSend implements Serializable { |
|
|
|
/*0:有效 1:无效**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="0:有效 1:无效",name="status") |
|
|
|
private Integer status; |
|
|
|
/***/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="",name="sendStartTime") |
|
|
|
private Date sendStartTime; |
|
|
|
/***/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="",name="sendEndTime") |
|
|
|
private Date sendEndTime; |
|
|
|
|
|
|
|
/*创建时间**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="创建时间",name="createDate") |
|
|
|
private Date createDate; |
|
|
|
@@ -89,12 +82,6 @@ public class WxCouponSend implements Serializable { |
|
|
|
public void setCouponId(Long _couponId) { |
|
|
|
couponId = _couponId; |
|
|
|
} |
|
|
|
public Integer getType() { |
|
|
|
return type; |
|
|
|
} |
|
|
|
public void setType(Integer _type) { |
|
|
|
type = _type; |
|
|
|
} |
|
|
|
public String getTitle() { |
|
|
|
return title; |
|
|
|
} |
|
|
|
@@ -113,18 +100,7 @@ public class WxCouponSend implements Serializable { |
|
|
|
public void setStatus(Integer _status) { |
|
|
|
status = _status; |
|
|
|
} |
|
|
|
public Date getSendStartTime() { |
|
|
|
return sendStartTime; |
|
|
|
} |
|
|
|
public void setSendStartTime(Date _sendStartTime) { |
|
|
|
sendStartTime = _sendStartTime; |
|
|
|
} |
|
|
|
public Date getSendEndTime() { |
|
|
|
return sendEndTime; |
|
|
|
} |
|
|
|
public void setSendEndTime(Date _sendEndTime) { |
|
|
|
sendEndTime = _sendEndTime; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getCreateDate() { |
|
|
|
return createDate; |
|
|
|
} |
|
|
|
@@ -151,12 +127,9 @@ public class WxCouponSend implements Serializable { |
|
|
|
Id_ASC("`id` ASC"),Id_DESC("`id` DESC") |
|
|
|
,TenantId_ASC("`tenant_id` ASC"),TenantId_DESC("`tenant_id` DESC") |
|
|
|
,CouponId_ASC("`coupon_id` ASC"),CouponId_DESC("`coupon_id` DESC") |
|
|
|
,Type_ASC("`type` ASC"),Type_DESC("`type` DESC") |
|
|
|
,Title_ASC("`title` ASC"),Title_DESC("`title` DESC") |
|
|
|
,SendType_ASC("`send_type` ASC"),SendType_DESC("`send_type` DESC") |
|
|
|
,Status_ASC("`status` ASC"),Status_DESC("`status` DESC") |
|
|
|
,SendStartTime_ASC("`send_start_time` ASC"),SendStartTime_DESC("`send_start_time` DESC") |
|
|
|
,SendEndTime_ASC("`send_end_time` ASC"),SendEndTime_DESC("`send_end_time` DESC") |
|
|
|
,CreateDate_ASC("`create_date` ASC"),CreateDate_DESC("`create_date` DESC") |
|
|
|
,UpdateDate_ASC("`update_date` ASC"),UpdateDate_DESC("`update_date` DESC") |
|
|
|
; |
|
|
|
|