package com.java110.po.allocationUserStorehouse;
|
|
import java.io.Serializable;
|
|
public class AllocationUserStorehousePo 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 String createTime;
|
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 String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getGiveQuantity() {
|
return giveQuantity;
|
}
|
|
public void setGiveQuantity(String giveQuantity) {
|
this.giveQuantity = giveQuantity;
|
}
|
}
|