package com.java110.po.purchase;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class AllocationStorehouseApplyPo implements Serializable {
|
|
private String applyId;
|
private String startUserId;
|
private String startUserName;
|
private String applyCount;
|
private String remark;
|
private String state;
|
private String storeId;
|
private String statusCd = "0";
|
private String communityId;
|
private String createTime;
|
//调拨返还状态标识
|
private String applyType;
|
//调拨源仓库
|
private String shId;
|
|
public String getApplyId() {
|
return applyId;
|
}
|
|
public void setApplyId(String applyId) {
|
this.applyId = applyId;
|
}
|
|
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 getApplyCount() {
|
return applyCount;
|
}
|
|
public void setApplyCount(String applyCount) {
|
this.applyCount = applyCount;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
public String getStoreId() {
|
return storeId;
|
}
|
|
public void setStoreId(String storeId) {
|
this.storeId = storeId;
|
}
|
|
public String getStatusCd() {
|
return statusCd;
|
}
|
|
public void setStatusCd(String statusCd) {
|
this.statusCd = statusCd;
|
}
|
|
public String getCommunityId() {
|
return communityId;
|
}
|
|
public void setCommunityId(String communityId) {
|
this.communityId = communityId;
|
}
|
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getApplyType() {
|
return applyType;
|
}
|
|
public void setApplyType(String applyType) {
|
this.applyType = applyType;
|
}
|
|
public String getShId() {
|
return shId;
|
}
|
|
public void setShId(String shId) {
|
this.shId = shId;
|
}
|
}
|