package com.java110.dto.couponPropertyUser;
|
|
import com.java110.dto.PageDto;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @ClassName FloorDto
|
* @Description 用户优惠券数据层封装
|
* @Author wuxw
|
* @Date 2019/4/24 8:52
|
* @Version 1.0
|
* add by wuxw 2019/4/24
|
**/
|
public class CouponPropertyUserDto extends PageDto implements Serializable {
|
|
public static final String STATE_WAIT = "1001";
|
public static final String STATE_FINISH = "2002";
|
public static final String TO_TYPE_PARKING = "4004"; //停车券
|
public static final String TO_TYPE_BUY = "1001"; //购物券
|
public static final String TO_TYPE_BUY_INNER = "1011"; //购物券
|
public static final String TO_TYPE_BUY_REPAIR = "3003"; //维修券
|
|
|
private String couponName;
|
private String toType;
|
private String toTypeName;
|
private String validityDay;
|
private String couponId;
|
private String userName;
|
private String couponUserId;
|
private String cppId;
|
private String tel;
|
private String state;
|
private String stock;
|
private String communityId;
|
private String value;
|
|
private String endTime;
|
private String isExpire;
|
|
|
private Date createTime;
|
|
private String statusCd = "0";
|
|
private String startTime;
|
|
private String isStart;
|
|
|
public String getCouponName() {
|
return couponName;
|
}
|
|
public void setCouponName(String couponName) {
|
this.couponName = couponName;
|
}
|
|
public String getToType() {
|
return toType;
|
}
|
|
public void setToType(String toType) {
|
this.toType = toType;
|
}
|
|
public String getValidityDay() {
|
return validityDay;
|
}
|
|
public void setValidityDay(String validityDay) {
|
this.validityDay = validityDay;
|
}
|
|
public String getCouponId() {
|
return couponId;
|
}
|
|
public void setCouponId(String couponId) {
|
this.couponId = couponId;
|
}
|
|
public String getUserName() {
|
return userName;
|
}
|
|
public void setUserName(String userName) {
|
this.userName = userName;
|
}
|
|
|
public String getCouponUserId() {
|
return couponUserId;
|
}
|
|
public void setCouponUserId(String couponUserId) {
|
this.couponUserId = couponUserId;
|
}
|
|
public String getCppId() {
|
return cppId;
|
}
|
|
public void setCppId(String cppId) {
|
this.cppId = cppId;
|
}
|
|
public String getTel() {
|
return tel;
|
}
|
|
public void setTel(String tel) {
|
this.tel = tel;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
public String getStock() {
|
return stock;
|
}
|
|
public void setStock(String stock) {
|
this.stock = stock;
|
}
|
|
public String getCommunityId() {
|
return communityId;
|
}
|
|
public void setCommunityId(String communityId) {
|
this.communityId = communityId;
|
}
|
|
public String getValue() {
|
return value;
|
}
|
|
public void setValue(String value) {
|
this.value = value;
|
}
|
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getStatusCd() {
|
return statusCd;
|
}
|
|
public void setStatusCd(String statusCd) {
|
this.statusCd = statusCd;
|
}
|
|
public String getToTypeName() {
|
return toTypeName;
|
}
|
|
public void setToTypeName(String toTypeName) {
|
this.toTypeName = toTypeName;
|
}
|
|
public String getEndTime() {
|
return endTime;
|
}
|
|
public void setEndTime(String endTime) {
|
this.endTime = endTime;
|
}
|
|
public String getIsExpire() {
|
return isExpire;
|
}
|
|
public void setIsExpire(String isExpire) {
|
this.isExpire = isExpire;
|
}
|
|
public String getStartTime() {
|
return startTime;
|
}
|
|
public void setStartTime(String startTime) {
|
this.startTime = startTime;
|
}
|
|
public String getIsStart() {
|
return isStart;
|
}
|
|
public void setIsStart(String isStart) {
|
this.isStart = isStart;
|
}
|
}
|