package com.stylefeng.guns.modular.shunfeng.model.vo;
|
|
|
|
public class CouponUserVo {
|
/**
|
* 优惠券id
|
*/
|
private Integer id;
|
/**
|
* 优惠券名称
|
*/
|
private String couponName;
|
/**
|
* 使用条件金额
|
*/
|
private Integer money;
|
/**
|
* 用户领取可用金额
|
*/
|
private Double usableMoney;
|
/**
|
* 过期时间
|
*/
|
private String pastTime;
|
/**
|
* 优惠券类型(1注册、2分享、3活动、4验票)
|
*/
|
private Integer type;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getCouponName() {
|
return couponName;
|
}
|
|
public void setCouponName(String couponName) {
|
this.couponName = couponName;
|
}
|
|
public Integer getMoney() {
|
return money;
|
}
|
|
public void setMoney(Integer money) {
|
this.money = money;
|
}
|
|
public Double getUsableMoney() {
|
return usableMoney;
|
}
|
|
public void setUsableMoney(Double usableMoney) {
|
this.usableMoney = usableMoney;
|
}
|
|
public String getPastTime() {
|
return pastTime;
|
}
|
|
public void setPastTime(String pastTime) {
|
this.pastTime = pastTime;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
}
|