package com.java110.dto.allocationUserStorehouse; 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 AllocationUserStorehouseDto extends PageDto implements Serializable { private String acceptUserId; private String acceptUserName; private String remark; private String storeId; private String resId; private String resName; private String startUserId; private String startUserName; private String ausId; private String stock; private Date createTime; private String statusCd = "0"; private String giveQuantity; public String getAcceptUserId() { return acceptUserId; } public void setAcceptUserId(String acceptUserId) { this.acceptUserId = acceptUserId; } public String getAcceptUserName() { return acceptUserName; } public void setAcceptUserName(String acceptUserName) { this.acceptUserName = acceptUserName; } public String getRemark() { return remark; } public void setRemark(String remark) { this.remark = remark; } public String getStoreId() { return storeId; } public void setStoreId(String storeId) { this.storeId = storeId; } public String getResId() { return resId; } public void setResId(String resId) { this.resId = resId; } public String getResName() { return resName; } public void setResName(String resName) { this.resName = resName; } public String getStartUserId() { return startUserId; } public void setStartUserId(String startUserId) { this.startUserId = startUserId; } public String getStartUserName() { return startUserName; } public void setStartUserName(String startUserName) { this.startUserName = startUserName; } public String getAusId() { return ausId; } public void setAusId(String ausId) { this.ausId = ausId; } public String getStock() { return stock; } public void setStock(String stock) { this.stock = stock; } 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 getGiveQuantity() { return giveQuantity; } public void setGiveQuantity(String giveQuantity) { this.giveQuantity = giveQuantity; } }