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_maintain")
|
public class EmergencySuppliesMaintainInfo {
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
private Boolean delFlag;
|
private Date gmtCreate;
|
private Date gmtModitify;
|
private Long createUid;
|
private Long updateUid;
|
|
private Long suppliesId;
|
private String maintainResult;
|
private Date maintainTime;
|
|
|
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 Long getSuppliesId() {
|
return suppliesId;
|
}
|
|
public void setSuppliesId(Long suppliesId) {
|
this.suppliesId = suppliesId;
|
}
|
|
public String getMaintainResult() {
|
return maintainResult;
|
}
|
|
public void setMaintainResult(String maintainResult) {
|
this.maintainResult = maintainResult;
|
}
|
|
public Date getMaintainTime() {
|
return maintainTime;
|
}
|
|
public void setMaintainTime(Date maintainTime) {
|
this.maintainTime = maintainTime;
|
}
|
|
@Override
|
public String toString() {
|
return "EmergencySuppliesMaintainInfo{" +
|
"id=" + id +
|
", delFlag=" + delFlag +
|
", gmtCreate=" + gmtCreate +
|
", gmtModitify=" + gmtModitify +
|
", createUid=" + createUid +
|
", updateUid=" + updateUid +
|
", suppliesId=" + suppliesId +
|
", maintainResult='" + maintainResult + '\'' +
|
", maintainTime=" + maintainTime +
|
'}';
|
}
|
}
|