package com.panzhihua.service_community.model.dos;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|
import lombok.Data;
|
|
/**
|
* @auther txb
|
* @create 2021-07-27 14:31:04
|
* @describe 实体类
|
*/
|
|
@Data
|
@TableName("com_sw_danger_report")
|
public class ComSwDangerReportDO implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键id
|
*/
|
@TableId(value = "id",type = IdType.INPUT)
|
private Long id;
|
|
/**
|
* 隐患编号
|
*/
|
private Integer dangerNo;
|
|
/**
|
* 隐患名称
|
*/
|
private String dangerName;
|
|
/**
|
* 隐患类型(1.火灾隐患 2.汛情隐患 3.疫情隐患)
|
*/
|
private String dangerType;
|
|
/**
|
* 状态(1.待处理 2.待整改 3.已整改)
|
*/
|
private String status;
|
|
/**
|
* 风险等级(1.红色预警 2.橙色预警 3.黄色预警 4.蓝色预警)
|
*/
|
private String dangerLevel;
|
|
/**
|
* 排查时间
|
*/
|
private String checkTime;
|
|
/**
|
* 主体部门、单位或个人全称
|
*/
|
private String unitName;
|
|
/**
|
* 隐患简述
|
*/
|
private String dagerDescription;
|
|
/**
|
* 是否立即整改(1是 、0否)
|
*/
|
private Integer isRectifyImmediately;
|
|
/**
|
* 采取措施
|
*/
|
private String takeSteps;
|
|
/**
|
* 采取措施照片
|
*/
|
private String stepsPhoto;
|
|
/**
|
* 整改人员
|
*/
|
private String rectifyPerson;
|
|
/**
|
* 人员名字,多个以逗号隔开
|
*/
|
private String personName;
|
|
/**
|
* 人员电话,多个以逗号隔开
|
*/
|
private String personPhone;
|
|
/**
|
* 整改时间
|
*/
|
private String rectifyTime;
|
|
/**
|
* 社区处理建议
|
*/
|
private String communitySuggestion;
|
|
/**
|
* 街道安全人员管理建议
|
*/
|
private String streetSuggestion;
|
|
/**
|
* 承办记录
|
*/
|
private String undertakeRecord;
|
|
/**
|
* 领导意见
|
*/
|
private String leaderSuggestion;
|
|
/**
|
* 指派人员
|
*/
|
private String assignPerson;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
/**
|
* 创建时间
|
*/
|
@TableField(fill = FieldFill.INSERT)
|
private Date createAt;
|
|
/**
|
* 创建人
|
*/
|
private Long createBy;
|
|
/**
|
* 更新时间
|
*/
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
private Date updateAt;
|
|
/**
|
* 修改人
|
*/
|
private Long updateBy;
|
|
@Override
|
public String toString() {
|
return "ComSwDangerReportDO{" + "id=" + id + ", dangerNo=" + dangerNo + ", dangerName=" + dangerName
|
+ ", dangerType=" + dangerType + ", status=" + status + ", dangerLevel=" + dangerLevel + ", checkTime="
|
+ checkTime + ", unitName=" + unitName + ", dagerDescription=" + dagerDescription
|
+ ", isRectifyImmediately=" + isRectifyImmediately + ", takeSteps=" + takeSteps + ", stepsPhoto="
|
+ stepsPhoto + ", rectifyPerson=" + rectifyPerson + ", rectifyTime=" + rectifyTime
|
+ ", communitySuggestion=" + communitySuggestion + ", streetSuggestion=" + streetSuggestion
|
+ ", undertakeRecord=" + undertakeRecord + ", remark=" + remark + ", createAt=" + createAt + ", createBy="
|
+ createBy + ", updateAt=" + updateAt + ", updateBy=" + updateBy + "}";
|
}
|
}
|