package com.nanometer.smartlab.entity;
|
|
import com.nanometer.smartlab.entity.enumtype.ValidFlag;
|
|
import java.io.Serializable;
|
import java.sql.Timestamp;
|
|
/**
|
* Created by johnny on 17/11/23.
|
*/
|
@SuppressWarnings("serial")
|
public class SysWarehouseContainer implements Serializable {
|
|
private String id;
|
private String warehouseId;
|
private String type;
|
private String warehouseType;
|
private String warehouseName;
|
private String containerCode;
|
private String infoCode;
|
private String structure;
|
private String name;
|
private Timestamp createTime;
|
private Timestamp updateTime;
|
private ValidFlag validFlag;
|
private String characterLeft;
|
private String characterRight;
|
private String controllerCode;
|
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getWarehouseId() {
|
return warehouseId;
|
}
|
|
public void setWarehouseId(String warehouseId) {
|
this.warehouseId = warehouseId;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
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 Timestamp getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Timestamp createTime) {
|
this.createTime = createTime;
|
}
|
|
public Timestamp getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Timestamp updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public ValidFlag getValidFlag() {
|
return validFlag;
|
}
|
|
public void setValidFlag(ValidFlag validFlag) {
|
this.validFlag = validFlag;
|
}
|
|
public String getWarehouseType() {
|
return warehouseType;
|
}
|
|
public void setWarehouseType(String warehouseType) {
|
this.warehouseType = warehouseType;
|
}
|
|
public String getWarehouseName() {
|
return warehouseName;
|
}
|
|
public void setWarehouseName(String warehouseName) {
|
this.warehouseName = warehouseName;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getCharacterLeft() {
|
return characterLeft;
|
}
|
|
public void setCharacterLeft(String characterLeft) {
|
this.characterLeft = characterLeft;
|
}
|
|
public String getCharacterRight() {
|
return characterRight;
|
}
|
|
public void setCharacterRight(String characterRight) {
|
this.characterRight = characterRight;
|
}
|
|
public String getControllerCode() {
|
return controllerCode;
|
}
|
|
public void setControllerCode(String controllerCode) {
|
this.controllerCode = controllerCode;
|
}
|
}
|