2025-03-19 10:01:54 +08:00
|
|
|
package com.wms.model.entity.table;
|
2024-07-04 07:43:04 +08:00
|
|
|
|
2025-03-19 10:01:54 +08:00
|
|
|
import com.wms.model.entity.BaseEntity;
|
2024-07-04 07:43:04 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 站台表
|
|
|
|
|
*/
|
|
|
|
|
public class Stand extends BaseEntity {
|
|
|
|
|
/**
|
|
|
|
|
* 站台id
|
|
|
|
|
*/
|
|
|
|
|
private String standId;
|
|
|
|
|
/**
|
|
|
|
|
* 是否允许入库
|
|
|
|
|
*/
|
|
|
|
|
private Integer allowIn;
|
|
|
|
|
/**
|
|
|
|
|
* 是否允许出库
|
|
|
|
|
*/
|
|
|
|
|
private Integer allowOut;
|
|
|
|
|
/**
|
|
|
|
|
* 任务号
|
|
|
|
|
*/
|
|
|
|
|
private String taskId;
|
|
|
|
|
/**
|
|
|
|
|
* 站台是否锁定
|
|
|
|
|
*/
|
|
|
|
|
private Integer isLock;
|
|
|
|
|
/**
|
|
|
|
|
* 站台状态
|
|
|
|
|
*/
|
|
|
|
|
private Integer standStatus;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 设备编号
|
|
|
|
|
*/
|
|
|
|
|
private Integer equipmentId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 库区编号
|
|
|
|
|
*/
|
|
|
|
|
private Integer areaId;
|
|
|
|
|
/**
|
|
|
|
|
* 站台类型
|
|
|
|
|
*/
|
|
|
|
|
private Integer standType;
|
|
|
|
|
/**
|
|
|
|
|
* 站台ip
|
|
|
|
|
*/
|
|
|
|
|
private String standIp;
|
|
|
|
|
|
|
|
|
|
public Stand() {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
public Stand(Integer standType, String standIp, Integer standStatus) {
|
|
|
|
|
this.standType = standType;
|
|
|
|
|
this.standIp = standIp;
|
|
|
|
|
this.standStatus = standStatus;
|
|
|
|
|
}
|
|
|
|
|
public Stand(String standId, Integer allowIn, Integer allowOut, String taskId, Integer isLock, Integer standStatus, Integer equipmentId, Integer areaId, Integer standType) {
|
|
|
|
|
this.standId = standId;
|
|
|
|
|
this.allowIn = allowIn;
|
|
|
|
|
this.allowOut = allowOut;
|
|
|
|
|
this.taskId = taskId;
|
|
|
|
|
this.isLock = isLock;
|
|
|
|
|
this.standStatus = standStatus;
|
|
|
|
|
this.equipmentId = equipmentId;
|
|
|
|
|
this.areaId = areaId;
|
|
|
|
|
this.standType = standType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getStandId() {
|
|
|
|
|
return standId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setStandId(String standId) {
|
|
|
|
|
this.standId = standId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getAllowIn() {
|
|
|
|
|
return allowIn;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setAllowIn(Integer allowIn) {
|
|
|
|
|
this.allowIn = allowIn;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getAllowOut() {
|
|
|
|
|
return allowOut;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setAllowOut(Integer allowOut) {
|
|
|
|
|
this.allowOut = allowOut;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getTaskId() {
|
|
|
|
|
return taskId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setTaskId(String taskId) {
|
|
|
|
|
this.taskId = taskId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getIsLock() {
|
|
|
|
|
return isLock;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setIsLock(Integer isLock) {
|
|
|
|
|
this.isLock = isLock;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getStandStatus() {
|
|
|
|
|
return standStatus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setStandStatus(Integer standStatus) {
|
|
|
|
|
this.standStatus = standStatus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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 getStandType() {
|
|
|
|
|
return standType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setStandType(Integer standType) {
|
|
|
|
|
this.standType = standType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getStandIp() {
|
|
|
|
|
return standIp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setStandIp(String standIp) {
|
|
|
|
|
this.standIp = standIp;
|
|
|
|
|
}
|
|
|
|
|
}
|