wms-serve-mule/src/main/java/com/wms/entity/table/Location.java

176 lines
2.9 KiB
Java
Raw Normal View History

2024-07-04 07:43:04 +08:00
package com.wms.entity.table;
import com.wms.entity.BaseEntity;
/**
* 库位
*/
public class Location extends BaseEntity {
/**
* 库位编号
*/
private String locationId;
/**
* 库区编号
*/
private Integer areaId;
/**
* 巷道编号
*/
private Integer tunnelId;
/**
* 设备编号
*/
private Integer equipmentId;
/**
* 库位类型
*/
private Integer locationType;
/**
*
*/
private Integer queue;
/**
*
*/
private Integer line;
/**
*
*/
private Integer layer;
/**
* 深度
*/
private Integer depth;
/**
* 是否锁定
*/
private Integer isLock;
/**
* 库位状态
*/
private Integer locationStatus;
/**
* 载具编号
*/
private String vehicleId;
public Location() {
}
public Location(String locationId) {
this.locationId = locationId;
}
public Location(Integer equipmentId) {
this.equipmentId = equipmentId;
}
public String getLocationId() {
return locationId;
}
public void setLocationId(String locationId) {
this.locationId = locationId;
}
public Integer getEquipmentId() {
return equipmentId;
}
public void setEquipmentId(Integer equipmentId) {
this.equipmentId = equipmentId;
}
public Integer getAreaId() {
return areaId;
}
public void setAreaId(Integer areaId) {
this.areaId = areaId;
}
public Integer getQueue() {
return queue;
}
public void setQueue(Integer queue) {
this.queue = queue;
}
public Integer getLine() {
return line;
}
public void setLine(Integer line) {
this.line = line;
}
public Integer getLayer() {
return layer;
}
public void setLayer(Integer layer) {
this.layer = layer;
}
public Integer getDepth() {
return depth;
}
public void setDepth(Integer depth) {
this.depth = depth;
}
public Integer getIsLock() {
return isLock;
}
public void setIsLock(Integer isLock) {
this.isLock = isLock;
}
public Integer getLocationStatus() {
return locationStatus;
}
public void setLocationStatus(Integer locationStatus) {
this.locationStatus = locationStatus;
}
public String getVehicleId() {
return vehicleId;
}
public void setVehicleId(String vehicleId) {
this.vehicleId = vehicleId;
}
public Integer getTunnelId() {
return tunnelId;
}
public void setTunnelId(Integer tunnelId) {
this.tunnelId = tunnelId;
}
public Integer getLocationType() {
return locationType;
}
public void setLocationType(Integer locationType) {
this.locationType = locationType;
}
}