package com.java110.dto.resourceStore; 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 ResourceStoreDto extends PageDto implements Serializable { private String resName; private String price; private String resCode; private String description; private String storeId; private String stock; private String resId; //10000 采购 20000出库 private String resOrderType; private Date createTime; private String statusCd = "0"; public String getResName() { return resName; } public void setResName(String resName) { this.resName = resName; } public String getPrice() { return price; } public void setPrice(String price) { this.price = price; } public String getResCode() { return resCode; } public void setResCode(String resCode) { this.resCode = resCode; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } 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 getResId() { return resId; } public void setResId(String resId) { this.resId = resId; } 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 getResOrderType() { return resOrderType; } public void setResOrderType(String resOrderType) { this.resOrderType = resOrderType; } }