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;
|
|
|
|
|
|
2024-07-18 13:26:56 +08:00
|
|
|
private String wareArea;
|
|
|
|
|
|
|
|
|
|
public String getWareArea() {
|
|
|
|
|
return wareArea;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setWareArea(String wareArea) {
|
|
|
|
|
this.wareArea = wareArea;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-04 07:43:04 +08:00
|
|
|
/**
|
|
|
|
|
* 库区编号
|
|
|
|
|
*/
|
|
|
|
|
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;
|
|
|
|
|
|
2025-02-26 01:00:27 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 是否为空托盘存放区域 0: 否, 1: 是
|
|
|
|
|
*/
|
|
|
|
|
private Integer isEmptyArea;
|
|
|
|
|
|
|
|
|
|
public Integer getIsEmptyArea() {
|
|
|
|
|
return isEmptyArea;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setIsEmptyArea(Integer isEmptyArea) {
|
|
|
|
|
this.isEmptyArea = isEmptyArea;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-04 07:43:04 +08:00
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|