| | |
| | | package com.nanometer.smartlab.entity; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonIgnoreProperties; |
| | | import com.nanometer.smartlab.entity.enumtype.ValidFlag; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | |
| | | /** |
| | | * Created by johnny on 17/11/23. |
| | | */ |
| | | @Getter |
| | | @Setter |
| | | @SuppressWarnings("serial") |
| | | @JsonIgnoreProperties(value = {"handler"}) |
| | | public class SysWarehouse implements Serializable { |
| | | |
| | | private String id; |
| | | private Long id; |
| | | private String type; |
| | | private String name; |
| | | private String infoCode; |
| | |
| | | private Timestamp updateTime; |
| | | private ValidFlag validFlag; |
| | | //新增负责部门 |
| | | private String department; |
| | | private Long department; |
| | | |
| | | private BigDecimal temperatureMax; |
| | | private BigDecimal temperatureMin; |
| | | private BigDecimal humidityMax; |
| | | private BigDecimal humidityMin; |
| | | |
| | | 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 getName() { |
| | | return name; |
| | | } |
| | | |
| | | public void setName(String name) { |
| | | this.name = name; |
| | | } |
| | | |
| | | public String getInfoCode() { |
| | | return infoCode; |
| | | } |
| | | |
| | | public void setInfoCode(String infoCode) { |
| | | this.infoCode = infoCode; |
| | | } |
| | | |
| | | public String getBarCode() { |
| | | return barCode; |
| | | } |
| | | |
| | | public void setBarCode(String barCode) { |
| | | this.barCode = barCode; |
| | | } |
| | | |
| | | public String getLocation1() { |
| | | return location1; |
| | | } |
| | | |
| | | public void setLocation1(String location1) { |
| | | this.location1 = location1; |
| | | } |
| | | |
| | | public String getLocation2() { |
| | | return location2; |
| | | } |
| | | |
| | | public void setLocation2(String location2) { |
| | | this.location2 = location2; |
| | | } |
| | | |
| | | 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 getDepartment() { |
| | | return department; |
| | | } |
| | | |
| | | public void setDepartment(String department) { |
| | | this.department = department; |
| | | } |
| | | |
| | | |
| | | public BigDecimal getTemperatureMax() { |
| | | return temperatureMax; |
| | | } |
| | | |
| | | public void setTemperatureMax(BigDecimal temperatureMax) { |
| | | this.temperatureMax = temperatureMax; |
| | | } |
| | | |
| | | public BigDecimal getTemperatureMin() { |
| | | return temperatureMin; |
| | | } |
| | | |
| | | public void setTemperatureMin(BigDecimal temperatureMin) { |
| | | this.temperatureMin = temperatureMin; |
| | | } |
| | | |
| | | public BigDecimal getHumidityMax() { |
| | | return humidityMax; |
| | | } |
| | | |
| | | public void setHumidityMax(BigDecimal humidityMax) { |
| | | this.humidityMax = humidityMax; |
| | | } |
| | | |
| | | public BigDecimal getHumidityMin() { |
| | | return humidityMin; |
| | | } |
| | | |
| | | public void setHumidityMin(BigDecimal humidityMin) { |
| | | this.humidityMin = humidityMin; |
| | | } |
| | | } |