package com.ishop.model.response;
|
|
import java.io.Serializable;
|
|
/**
|
* 用户下单可用优惠券
|
* @date 2023-07-09
|
*/
|
public class CouponUserOrderResponse implements Serializable {
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Integer getCouponId() {
|
return couponId;
|
}
|
|
public void setCouponId(Integer couponId) {
|
this.couponId = couponId;
|
}
|
|
public Integer getMerId() {
|
return merId;
|
}
|
|
public void setMerId(Integer merId) {
|
this.merId = merId;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public Integer getCategory() {
|
return category;
|
}
|
|
public void setCategory(Integer category) {
|
this.category = category;
|
}
|
|
public Double getMoney() {
|
return money;
|
}
|
|
public void setMoney(Double money) {
|
this.money = money;
|
}
|
|
public Double getMinPrice() {
|
return minPrice;
|
}
|
|
public void setMinPrice(Double minPrice) {
|
this.minPrice = minPrice;
|
}
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
|
public String getStartTime() {
|
return startTime;
|
}
|
|
public void setStartTime(String startTime) {
|
this.startTime = startTime;
|
}
|
|
public String getEndTime() {
|
return endTime;
|
}
|
|
public void setEndTime(String endTime) {
|
this.endTime = endTime;
|
}
|
|
public Long getUseTime() {
|
return useTime;
|
}
|
|
public void setUseTime(Long useTime) {
|
this.useTime = useTime;
|
}
|
|
// @ApiModelProperty(value = "id")
|
private Long id;
|
|
// @ApiModelProperty(value = "优惠券发布id")
|
private Integer couponId;
|
|
// @ApiModelProperty(value = "店铺id,平台为0")
|
private Integer merId;
|
|
// @ApiModelProperty(value = "优惠券名称")
|
private String name;
|
|
// @ApiModelProperty(value = "类别 1-商家券, 2-商品券, 3-平台券")
|
private Integer category;
|
|
// @ApiModelProperty(value = "优惠券的面值")
|
private Double money;
|
|
// @ApiModelProperty(value = "最低消费多少金额可用优惠券")
|
private Double minPrice;
|
|
// @ApiModelProperty(value = "状态(0:未使用,1:已使用, 2:已失效)")
|
private Integer status;
|
|
// @ApiModelProperty(value = "开始使用时间")
|
// @JsonFormat(pattern = "yyyy-MM-dd")
|
private String startTime;
|
|
// @ApiModelProperty(value = "过期时间")
|
// @JsonFormat(pattern = "yyyy-MM-dd")
|
private String endTime;
|
|
// @ApiModelProperty(value = "使用时间")
|
private Long useTime;
|
}
|