package com.consum.base.pojo;
|
|
import com.walker.web.param.ParamRequest;
|
|
public class LWhFormInventoryParam extends ParamRequest {
|
private Long id;
|
/**
|
* 盘点单号
|
*/
|
private String businessFormCode;
|
/**
|
* 盘点单名
|
*/
|
private String businessFormName;
|
/**
|
* 仓库编号
|
*/
|
private Long warehouseId;
|
/**
|
* 盘点人
|
*/
|
private Long operatorId;
|
/**
|
* 监盘人
|
*/
|
private Integer operatorId2;
|
/**
|
* 备注
|
*/
|
private String beiz1;
|
/**
|
* 盘点时间 开始
|
*/
|
private Long inventoryDateStart;
|
/**
|
* 盘点时间 结束
|
*/
|
private Long inventoryDateEnd;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getBusinessFormCode() {
|
return businessFormCode;
|
}
|
|
public void setBusinessFormCode(String businessFormCode) {
|
this.businessFormCode = businessFormCode;
|
}
|
|
public String getBusinessFormName() {
|
return businessFormName;
|
}
|
|
public void setBusinessFormName(String businessFormName) {
|
this.businessFormName = businessFormName;
|
}
|
|
public Long getWarehouseId() {
|
return warehouseId;
|
}
|
|
public void setWarehouseId(Long warehouseId) {
|
this.warehouseId = warehouseId;
|
}
|
|
public Long getOperatorId() {
|
return operatorId;
|
}
|
|
public void setOperatorId(Long operatorId) {
|
this.operatorId = operatorId;
|
}
|
|
public Integer getOperatorId2() {
|
return operatorId2;
|
}
|
|
public void setOperatorId2(Integer operatorId2) {
|
this.operatorId2 = operatorId2;
|
}
|
|
public String getBeiz1() {
|
return beiz1;
|
}
|
|
public void setBeiz1(String beiz1) {
|
this.beiz1 = beiz1;
|
}
|
|
public Long getInventoryDateStart() {
|
return inventoryDateStart;
|
}
|
|
public void setInventoryDateStart(Long inventoryDateStart) {
|
this.inventoryDateStart = inventoryDateStart;
|
}
|
|
public Long getInventoryDateEnd() {
|
return inventoryDateEnd;
|
}
|
|
public void setInventoryDateEnd(Long inventoryDateEnd) {
|
this.inventoryDateEnd = inventoryDateEnd;
|
}
|
}
|