167 lines
2.9 KiB
Java
167 lines
2.9 KiB
Java
package com.wms.entity.app;
|
||
|
||
import com.wms.entity.BaseEntity;
|
||
|
||
import java.util.Date;
|
||
|
||
/**
|
||
* WMS接收入库任务的接口实体类
|
||
*/
|
||
public class TaskInRequestEntity extends BaseEntity {
|
||
/**
|
||
* 物料编号
|
||
*/
|
||
private String goodsId;
|
||
|
||
/**
|
||
* 批次号
|
||
*/
|
||
private String batchNo;
|
||
|
||
/**
|
||
* 入库数量
|
||
*/
|
||
private Integer goodsNum;
|
||
|
||
/**
|
||
* 入库日期/生产日期
|
||
*/
|
||
private Date productionDate;
|
||
|
||
/**
|
||
* 托盘号
|
||
*/
|
||
private String vehicleNo;
|
||
|
||
/**
|
||
* 尺寸
|
||
*/
|
||
private Integer vehicleSize;
|
||
|
||
/**
|
||
* 重量
|
||
*/
|
||
private Double weight;
|
||
|
||
/**
|
||
* 起始位置
|
||
*/
|
||
private String origin;
|
||
|
||
/**
|
||
* 目标位置
|
||
*/
|
||
private String destination;
|
||
|
||
/**
|
||
* 入库库位类型:是否为虚拟库位 0:虚拟库位;1:真实库位
|
||
*/
|
||
private String isVirtual;
|
||
|
||
/**
|
||
* 是否空箱入库 0:空箱入库;1:带料入库
|
||
*/
|
||
private String isEmpty;
|
||
|
||
/**
|
||
* 用户
|
||
*/
|
||
private String userName;
|
||
|
||
public String getGoodsId() {
|
||
return goodsId;
|
||
}
|
||
|
||
public void setGoodsId(String goodsId) {
|
||
this.goodsId = goodsId;
|
||
}
|
||
|
||
public String getBatchNo() {
|
||
return batchNo;
|
||
}
|
||
|
||
public void setBatchNo(String batchNo) {
|
||
this.batchNo = batchNo;
|
||
}
|
||
|
||
public Integer getGoodsNum() {
|
||
return goodsNum;
|
||
}
|
||
|
||
public void setGoodsNum(Integer goodsNum) {
|
||
this.goodsNum = goodsNum;
|
||
}
|
||
|
||
public Date getProductionDate() {
|
||
return productionDate;
|
||
}
|
||
|
||
public void setProductionDate(Date productionDate) {
|
||
this.productionDate = productionDate;
|
||
}
|
||
|
||
public String getVehicleNo() {
|
||
return vehicleNo;
|
||
}
|
||
|
||
public void setVehicleNo(String vehicleNo) {
|
||
this.vehicleNo = vehicleNo;
|
||
}
|
||
|
||
public Double getWeight() {
|
||
return weight;
|
||
}
|
||
|
||
public void setWeight(Double weight) {
|
||
this.weight = weight;
|
||
}
|
||
|
||
public String getOrigin() {
|
||
return origin;
|
||
}
|
||
|
||
public void setOrigin(String origin) {
|
||
this.origin = origin;
|
||
}
|
||
|
||
public String getDestination() {
|
||
return destination;
|
||
}
|
||
|
||
public void setDestination(String destination) {
|
||
this.destination = destination;
|
||
}
|
||
|
||
public Integer getVehicleSize() {
|
||
return vehicleSize;
|
||
}
|
||
|
||
public void setVehicleSize(Integer vehicleSize) {
|
||
this.vehicleSize = vehicleSize;
|
||
}
|
||
|
||
public String getIsVirtual() {
|
||
return isVirtual;
|
||
}
|
||
|
||
public void setIsVirtual(String isVirtual) {
|
||
this.isVirtual = isVirtual;
|
||
}
|
||
|
||
public String getIsEmpty() {
|
||
return isEmpty;
|
||
}
|
||
|
||
public void setIsEmpty(String isEmpty) {
|
||
this.isEmpty = isEmpty;
|
||
}
|
||
|
||
public String getUserName() {
|
||
return userName;
|
||
}
|
||
|
||
public void setUserName(String userName) {
|
||
this.userName = userName;
|
||
}
|
||
}
|