package com.gkhy.safePlatform.incidentManage.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.util.Date;
|
import java.util.List;
|
|
@TableName("accident_case")
|
public class AccidentCaseInfo {
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
private Boolean delFlag;
|
|
private Date gmtCreate;
|
|
private Date gmtModitify;
|
|
private Long createUid;
|
|
private Long updateUid;
|
|
private String caseTitle;
|
|
private String caseContent;
|
|
private Date caseTime;
|
|
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 String getCaseTitle() {
|
return caseTitle;
|
}
|
|
public void setCaseTitle(String caseTitle) {
|
this.caseTitle = caseTitle;
|
}
|
|
public String getCaseContent() {
|
return caseContent;
|
}
|
|
public void setCaseContent(String caseContent) {
|
this.caseContent = caseContent;
|
}
|
|
public Date getCaseTime() {
|
return caseTime;
|
}
|
|
public void setCaseTime(Date caseTime) {
|
this.caseTime = caseTime;
|
}
|
}
|