package com.java110.dto.reserve;
|
|
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 ReserveGoodsDto extends ReserveParamsDto implements Serializable {
|
|
|
private String endDate;
|
private String goodsId;
|
private String sort;
|
private String type;
|
private String imgUrl;
|
private String catalogId;
|
private String paramsId;
|
private String paramsName;
|
private String price;
|
private String state;
|
private String communityId;
|
private String goodsName;
|
private String startDate;
|
private String goodsDesc;
|
|
|
private Date createTime;
|
|
private String content;
|
|
private String statusCd = "0";
|
|
|
public String getEndDate() {
|
return endDate;
|
}
|
|
public void setEndDate(String endDate) {
|
this.endDate = endDate;
|
}
|
|
public String getGoodsId() {
|
return goodsId;
|
}
|
|
public void setGoodsId(String goodsId) {
|
this.goodsId = goodsId;
|
}
|
|
public String getSort() {
|
return sort;
|
}
|
|
public void setSort(String sort) {
|
this.sort = sort;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getImgUrl() {
|
return imgUrl;
|
}
|
|
public void setImgUrl(String imgUrl) {
|
this.imgUrl = imgUrl;
|
}
|
|
public String getCatalogId() {
|
return catalogId;
|
}
|
|
public void setCatalogId(String catalogId) {
|
this.catalogId = catalogId;
|
}
|
|
public String getParamsId() {
|
return paramsId;
|
}
|
|
public void setParamsId(String paramsId) {
|
this.paramsId = paramsId;
|
}
|
|
public String getPrice() {
|
return price;
|
}
|
|
public void setPrice(String price) {
|
this.price = price;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
public String getCommunityId() {
|
return communityId;
|
}
|
|
public void setCommunityId(String communityId) {
|
this.communityId = communityId;
|
}
|
|
public String getGoodsName() {
|
return goodsName;
|
}
|
|
public void setGoodsName(String goodsName) {
|
this.goodsName = goodsName;
|
}
|
|
public String getStartDate() {
|
return startDate;
|
}
|
|
public void setStartDate(String startDate) {
|
this.startDate = startDate;
|
}
|
|
public String getGoodsDesc() {
|
return goodsDesc;
|
}
|
|
public void setGoodsDesc(String goodsDesc) {
|
this.goodsDesc = goodsDesc;
|
}
|
|
|
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 getParamsName() {
|
return paramsName;
|
}
|
|
public void setParamsName(String paramsName) {
|
this.paramsName = paramsName;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
}
|