package com.gkhy.safePlatform.emergency.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.util.Date;
|
|
@TableName("emergency_supplies")
|
public class EmergencySuppliesInfo {
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
private Boolean delFlag;
|
private Date gmtCreate;
|
private Date gmtModitify;
|
private Long createUid;
|
private Long updateUid;
|
|
private Date productionDate;
|
private Date useDate;
|
private Date inspectDate;
|
private Date nextInspectDate;
|
private Integer inspectPeriod;
|
private Integer count;
|
private Integer usePeriod;
|
private Long departmentId;
|
private Long principalUserUid;
|
private String status;
|
private String classification;
|
private String name;
|
private String number;
|
private String model;
|
private String longitude;
|
private String latitude;
|
private String use;
|
private Long areaId;
|
private String place;
|
private String useExplain;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Boolean getDelFlag() {
|
return delFlag;
|
}
|
|
public void setDelFlag(Boolean delFlag) {
|
this.delFlag = delFlag;
|
}
|
|
public Date getGmtCreate() {
|
return gmtCreate;
|
}
|
|
public void setGmtCreate(Date gmtCreate) {
|
this.gmtCreate = gmtCreate;
|
}
|
|
public Date getGmtModitify() {
|
return gmtModitify;
|
}
|
|
public void setGmtModitify(Date gmtModitify) {
|
this.gmtModitify = gmtModitify;
|
}
|
|
public Long getCreateUid() {
|
return createUid;
|
}
|
|
public void setCreateUid(Long createUid) {
|
this.createUid = createUid;
|
}
|
|
public Long getUpdateUid() {
|
return updateUid;
|
}
|
|
public void setUpdateUid(Long updateUid) {
|
this.updateUid = updateUid;
|
}
|
|
public Date getProductionDate() {
|
return productionDate;
|
}
|
|
public void setProductionDate(Date productionDate) {
|
this.productionDate = productionDate;
|
}
|
|
public Date getUseDate() {
|
return useDate;
|
}
|
|
public void setUseDate(Date useDate) {
|
this.useDate = useDate;
|
}
|
|
public Date getInspectDate() {
|
return inspectDate;
|
}
|
|
public void setInspectDate(Date inspectDate) {
|
this.inspectDate = inspectDate;
|
}
|
|
public Date getNextInspectDate() {
|
return nextInspectDate;
|
}
|
|
public void setNextInspectDate(Date nextInspectDate) {
|
this.nextInspectDate = nextInspectDate;
|
}
|
|
public Integer getInspectPeriod() {
|
return inspectPeriod;
|
}
|
|
public void setInspectPeriod(Integer inspectPeriod) {
|
this.inspectPeriod = inspectPeriod;
|
}
|
|
public Integer getCount() {
|
return count;
|
}
|
|
public void setCount(Integer count) {
|
this.count = count;
|
}
|
|
public Integer getUsePeriod() {
|
return usePeriod;
|
}
|
|
public void setUsePeriod(Integer usePeriod) {
|
this.usePeriod = usePeriod;
|
}
|
|
public Long getDepartmentId() {
|
return departmentId;
|
}
|
|
public void setDepartmentId(Long departmentId) {
|
this.departmentId = departmentId;
|
}
|
|
public Long getPrincipalUserUid() {
|
return principalUserUid;
|
}
|
|
public void setPrincipalUserUid(Long principalUserUid) {
|
this.principalUserUid = principalUserUid;
|
}
|
|
public String getStatus() {
|
return status;
|
}
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
|
public String getClassification() {
|
return classification;
|
}
|
|
public void setClassification(String classification) {
|
this.classification = classification;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getNumber() {
|
return number;
|
}
|
|
public void setNumber(String number) {
|
this.number = number;
|
}
|
|
public String getModel() {
|
return model;
|
}
|
|
public void setModel(String model) {
|
this.model = model;
|
}
|
|
public String getLongitude() {
|
return longitude;
|
}
|
|
public void setLongitude(String longitude) {
|
this.longitude = longitude;
|
}
|
|
public String getLatitude() {
|
return latitude;
|
}
|
|
public void setLatitude(String latitude) {
|
this.latitude = latitude;
|
}
|
|
public String getUse() {
|
return use;
|
}
|
|
public void setUse(String use) {
|
this.use = use;
|
}
|
|
public Long getAreaId() {
|
return areaId;
|
}
|
|
public void setAreaId(Long areaId) {
|
this.areaId = areaId;
|
}
|
|
public String getPlace() {
|
return place;
|
}
|
|
public void setPlace(String place) {
|
this.place = place;
|
}
|
|
public String getUseExplain() {
|
return useExplain;
|
}
|
|
public void setUseExplain(String useExplain) {
|
this.useExplain = useExplain;
|
}
|
|
@Override
|
public String toString() {
|
return "EmergencySuppliesInfo{" +
|
"id=" + id +
|
", delFlag=" + delFlag +
|
", gmtCreate=" + gmtCreate +
|
", gmtModitify=" + gmtModitify +
|
", createUid=" + createUid +
|
", updateUid=" + updateUid +
|
", productionDate=" + productionDate +
|
", useDate=" + useDate +
|
", inspectDate=" + inspectDate +
|
", nextInspectDate=" + nextInspectDate +
|
", inspectPeriod=" + inspectPeriod +
|
", count=" + count +
|
", usePeriod=" + usePeriod +
|
", departmentId=" + departmentId +
|
", principalUserUid=" + principalUserUid +
|
", status='" + status + '\'' +
|
", classification='" + classification + '\'' +
|
", name='" + name + '\'' +
|
", number='" + number + '\'' +
|
", model='" + model + '\'' +
|
", longitude='" + longitude + '\'' +
|
", latitude='" + latitude + '\'' +
|
", use='" + use + '\'' +
|
", areaId=" + areaId +
|
", place='" + place + '\'' +
|
", useExplain='" + useExplain + '\'' +
|
'}';
|
}
|
}
|