package com.consum.base.pojo;
|
|
import com.walker.web.param.ParamRequest;
|
|
import java.util.List;
|
|
/**
|
* @ClassName LWhFormProcureParam
|
|
* @Date 2023/10/27
|
* @Description
|
* @Version 1.0
|
**/
|
public class LWhFormProcureParam extends ParamRequest {
|
private Long id;
|
/**
|
* 仓库编号
|
*/
|
private Long warehouseId;
|
|
/**
|
* 采购手续
|
*/
|
private String procureDoc;
|
|
/**
|
* 采购方式(1:集采;2=自采)
|
*/
|
private Integer buyType = null;
|
|
|
/**
|
* 采购单型号
|
*/
|
private List<LWhFormProcureGoodsParams> procureGoods;
|
|
public Long getWarehouseId() {
|
return warehouseId;
|
}
|
|
public void setWarehouseId(Long warehouseId) {
|
this.warehouseId = warehouseId;
|
}
|
|
public String getProcureDoc() {
|
return procureDoc;
|
}
|
|
public void setProcureDoc(String procureDoc) {
|
this.procureDoc = procureDoc;
|
}
|
|
public Integer getBuyType() {
|
return buyType;
|
}
|
|
public void setBuyType(Integer buyType) {
|
this.buyType = buyType;
|
}
|
|
public List<LWhFormProcureGoodsParams> getProcureGoods() {
|
return procureGoods;
|
}
|
|
public void setProcureGoods(List<LWhFormProcureGoodsParams> procureGoods) {
|
this.procureGoods = procureGoods;
|
}
|
|
/**
|
* 入库单号
|
*/
|
private String businessFormCode;
|
/**
|
* 物品模版名称
|
*/
|
private String goodsTemplateName;
|
/**
|
* 机构
|
*/
|
private Long agencyId;
|
/**
|
* 创建人
|
*/
|
private String buyerName;
|
/**
|
* 1=待入库;2=已入库
|
*/
|
private Short states;
|
|
/**
|
* 入库时间 开始
|
*/
|
private Long incomeTimeStart;
|
/**
|
* 入库时间 结束
|
*/
|
private Long incomeTimeEnd;
|
|
public String getBusinessFormCode() {
|
return businessFormCode;
|
}
|
|
public void setBusinessFormCode(String businessFormCode) {
|
this.businessFormCode = businessFormCode;
|
}
|
|
public String getGoodsTemplateName() {
|
return goodsTemplateName;
|
}
|
|
public void setGoodsTemplateName(String goodsTemplateName) {
|
this.goodsTemplateName = goodsTemplateName;
|
}
|
|
public Long getAgencyId() {
|
return agencyId;
|
}
|
|
public void setAgencyId(Long agencyId) {
|
this.agencyId = agencyId;
|
}
|
|
public String getBuyerName() {
|
return buyerName;
|
}
|
|
public void setBuyerName(String buyerName) {
|
this.buyerName = buyerName;
|
}
|
|
public Short getStates() {
|
return states;
|
}
|
|
public void setStates(Short states) {
|
this.states = states;
|
}
|
|
public Long getIncomeTimeStart() {
|
return incomeTimeStart;
|
}
|
|
public void setIncomeTimeStart(Long incomeTimeStart) {
|
this.incomeTimeStart = incomeTimeStart;
|
}
|
|
public Long getIncomeTimeEnd() {
|
return incomeTimeEnd;
|
}
|
|
public void setIncomeTimeEnd(Long incomeTimeEnd) {
|
this.incomeTimeEnd = incomeTimeEnd;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
}
|