package com.java110.dto.resource;
|
|
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 ResourceStoreTimesDto extends ResourceStoreDto implements Serializable {
|
|
private String price;
|
private String totalPrice;
|
private String applyOrderId;
|
private String storeId;
|
private String stock;
|
|
private String hasStock;
|
private String resCode;
|
private String[] resCodes;
|
private String timesId;
|
private String shId;
|
|
|
private Date createTime;
|
|
private String statusCd = "0";
|
|
|
public String getPrice() {
|
return price;
|
}
|
|
public void setPrice(String price) {
|
this.price = price;
|
}
|
|
public String getApplyOrderId() {
|
return applyOrderId;
|
}
|
|
public void setApplyOrderId(String applyOrderId) {
|
this.applyOrderId = applyOrderId;
|
}
|
|
public String getStoreId() {
|
return storeId;
|
}
|
|
public void setStoreId(String storeId) {
|
this.storeId = storeId;
|
}
|
|
public String getStock() {
|
return stock;
|
}
|
|
public void setStock(String stock) {
|
this.stock = stock;
|
}
|
|
public String getResCode() {
|
return resCode;
|
}
|
|
public void setResCode(String resCode) {
|
this.resCode = resCode;
|
}
|
|
public String getTimesId() {
|
return timesId;
|
}
|
|
public void setTimesId(String timesId) {
|
this.timesId = timesId;
|
}
|
|
|
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 getHasStock() {
|
return hasStock;
|
}
|
|
public void setHasStock(String hasStock) {
|
this.hasStock = hasStock;
|
}
|
|
public String getTotalPrice() {
|
return totalPrice;
|
}
|
|
public void setTotalPrice(String totalPrice) {
|
this.totalPrice = totalPrice;
|
}
|
|
public String[] getResCodes() {
|
return resCodes;
|
}
|
|
public void setResCodes(String[] resCodes) {
|
this.resCodes = resCodes;
|
}
|
|
public String getShId() {
|
return shId;
|
}
|
|
public void setShId(String shId) {
|
this.shId = shId;
|
}
|
}
|