package com.nanometer.smartlab.entity.dto;
|
|
import java.io.Serializable;
|
|
public class SysWarehouseContainerDto implements Serializable {
|
|
private String id;
|
private String type;
|
private String warehouseContainerType;
|
private String warehouseContainerName;
|
private String containerCode;
|
private String infoCode;
|
private String structure;
|
private String name;
|
private String controllerCode;
|
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getWarehouseContainerType() {
|
return warehouseContainerType;
|
}
|
|
public void setWarehouseContainerType(String warehouseContainerType) {
|
this.warehouseContainerType = warehouseContainerType;
|
}
|
|
public String getWarehouseContainerName() {
|
return warehouseContainerName;
|
}
|
|
public void setWarehouseContainerName(String warehouseContainerName) {
|
this.warehouseContainerName = warehouseContainerName;
|
}
|
|
public String getContainerCode() {
|
return containerCode;
|
}
|
|
public void setContainerCode(String containerCode) {
|
this.containerCode = containerCode;
|
}
|
|
public String getInfoCode() {
|
return infoCode;
|
}
|
|
public void setInfoCode(String infoCode) {
|
this.infoCode = infoCode;
|
}
|
|
public String getStructure() {
|
return structure;
|
}
|
|
public void setStructure(String structure) {
|
this.structure = structure;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getControllerCode() {
|
return controllerCode;
|
}
|
|
public void setControllerCode(String controllerCode) {
|
this.controllerCode = controllerCode;
|
}
|
}
|