|
|
|
@ -1,9 +1,14 @@ |
|
|
|
package com.gaotao.modules.automatedWarehouse.entity; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableId; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
|
|
|
/** |
|
|
|
* AGV站点信息实体类 |
|
|
|
* AGV站点信息基础实体类 - 直接映射数据库表 - rqrq |
|
|
|
* |
|
|
|
* <p><b>核心字段说明:</b></p> |
|
|
|
* <ul> |
|
|
|
@ -29,10 +34,13 @@ import java.math.BigDecimal; |
|
|
|
* 4. 如果相同则允许扫进,否则报错 |
|
|
|
* </pre> |
|
|
|
*/ |
|
|
|
@Data |
|
|
|
@TableName("agv_station") |
|
|
|
public class AgvStation { |
|
|
|
/** |
|
|
|
* 主键,自增ID |
|
|
|
*/ |
|
|
|
@TableId(type = IdType.AUTO) |
|
|
|
private Long id; |
|
|
|
|
|
|
|
/** |
|
|
|
@ -49,7 +57,7 @@ public class AgvStation { |
|
|
|
private String stationName; |
|
|
|
|
|
|
|
/** |
|
|
|
* 站点类型: |
|
|
|
* 站点类型 |
|
|
|
*/ |
|
|
|
private String areaType; |
|
|
|
|
|
|
|
@ -111,140 +119,17 @@ public class AgvStation { |
|
|
|
private String status; |
|
|
|
|
|
|
|
/** |
|
|
|
* 站点ID(新增字段) |
|
|
|
* 站点ID |
|
|
|
*/ |
|
|
|
private String stationId; |
|
|
|
|
|
|
|
/** |
|
|
|
* 站点类型(新增字段) |
|
|
|
* 站点类型 |
|
|
|
*/ |
|
|
|
private String stationType; |
|
|
|
|
|
|
|
public Long getId() { |
|
|
|
return id; |
|
|
|
} |
|
|
|
|
|
|
|
public void setId(Long id) { |
|
|
|
this.id = id; |
|
|
|
} |
|
|
|
|
|
|
|
public String getStationCode() { |
|
|
|
return stationCode; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStationCode(String stationCode) { |
|
|
|
this.stationCode = stationCode; |
|
|
|
} |
|
|
|
|
|
|
|
public String getStationName() { |
|
|
|
return stationName; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStationName(String stationName) { |
|
|
|
this.stationName = stationName; |
|
|
|
} |
|
|
|
|
|
|
|
public String getAreaType() { |
|
|
|
return areaType; |
|
|
|
} |
|
|
|
|
|
|
|
public void setAreaType(String areaType) { |
|
|
|
this.areaType = areaType; |
|
|
|
} |
|
|
|
|
|
|
|
public String getWarehouseCode() { |
|
|
|
return warehouseCode; |
|
|
|
} |
|
|
|
|
|
|
|
public void setWarehouseCode(String warehouseCode) { |
|
|
|
this.warehouseCode = warehouseCode; |
|
|
|
} |
|
|
|
|
|
|
|
public BigDecimal getLocationX() { |
|
|
|
return locationX; |
|
|
|
} |
|
|
|
|
|
|
|
public void setLocationX(BigDecimal locationX) { |
|
|
|
this.locationX = locationX; |
|
|
|
} |
|
|
|
|
|
|
|
public BigDecimal getLocationY() { |
|
|
|
return locationY; |
|
|
|
} |
|
|
|
|
|
|
|
public void setLocationY(BigDecimal locationY) { |
|
|
|
this.locationY = locationY; |
|
|
|
} |
|
|
|
|
|
|
|
public BigDecimal getLocationZ() { |
|
|
|
return locationZ; |
|
|
|
} |
|
|
|
|
|
|
|
public void setLocationZ(BigDecimal locationZ) { |
|
|
|
this.locationZ = locationZ; |
|
|
|
} |
|
|
|
|
|
|
|
public String getActive() { |
|
|
|
return active; |
|
|
|
} |
|
|
|
|
|
|
|
public void setActive(String active) { |
|
|
|
this.active = active; |
|
|
|
} |
|
|
|
|
|
|
|
public String getLocationCode() { |
|
|
|
return locationCode; |
|
|
|
} |
|
|
|
|
|
|
|
public void setLocationCode(String locationCode) { |
|
|
|
this.locationCode = locationCode; |
|
|
|
} |
|
|
|
|
|
|
|
public String getRemark() { |
|
|
|
return remark; |
|
|
|
} |
|
|
|
|
|
|
|
public void setRemark(String remark) { |
|
|
|
this.remark = remark; |
|
|
|
} |
|
|
|
|
|
|
|
public String getStationArea() { |
|
|
|
return stationArea; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStationArea(String stationArea) { |
|
|
|
this.stationArea = stationArea; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getStatusDb() { |
|
|
|
return statusDb; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStatusDb(Integer statusDb) { |
|
|
|
this.statusDb = statusDb; |
|
|
|
} |
|
|
|
|
|
|
|
public String getStatus() { |
|
|
|
return status; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStatus(String status) { |
|
|
|
this.status = status; |
|
|
|
} |
|
|
|
|
|
|
|
public String getStationId() { |
|
|
|
return stationId; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStationId(String stationId) { |
|
|
|
this.stationId = stationId; |
|
|
|
} |
|
|
|
|
|
|
|
public String getStationType() { |
|
|
|
return stationType; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStationType(String stationType) { |
|
|
|
this.stationType = stationType; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 自动续盘 Y: 站点为空闲时自动调用空托盘过来 N:不续盘 |
|
|
|
*/ |
|
|
|
private String autoCallBlankPallet; |
|
|
|
} |