| | |
| | | package com.ruoyi.doublePrevention.entity;
|
| | |
|
| | | import com.baomidou.mybatisplus.annotation.IdType;
|
| | | import com.baomidou.mybatisplus.annotation.TableId;
|
| | | import com.baomidou.mybatisplus.annotation.TableName;
|
| | | import lombok.Data;
|
| | |
|
| | | import java.io.Serializable;
|
| | | import java.util.Date;
|
| | |
|
| | | /**
|
| | | * 包保责任制
|
| | | */
|
| | | @Data
|
| | | @TableName("risk_and_people_info")
|
| | | public class RiskAndPeopleInfo implements Serializable {
|
| | | private static final long serialVersionUID = -61793617513430361L;
|
| | |
|
| | | @TableId(value = "id" , type = IdType.AUTO)
|
| | | private Long id;
|
| | | /**
|
| | | * 行政区划
|
| | | */
|
| | | private String areaCode;
|
| | | /**
|
| | | * 公司名称
|
| | | */
|
| | | private String companyName;
|
| | | /**
|
| | | * 企业类型
|
| | | */
|
| | | private String companyNature;
|
| | | /**
|
| | | * 企业类型名称
|
| | | */
|
| | | private String companyNatureName;
|
| | | /**
|
| | | *
|
| | | */
|
| | | private String hazardId;
|
| | | /**
|
| | | * 危险源编码
|
| | | */
|
| | | private String hazardCode;
|
| | | /**
|
| | | * 危险源名称
|
| | | */
|
| | | private String hazardName;
|
| | | /**
|
| | | * 风险等级(数字)
|
| | | */
|
| | | private String hazardRank;
|
| | | /**
|
| | | * 风险等级(汉字)
|
| | | */
|
| | | private String hazardRankName;
|
| | | /**
|
| | | * 园区名称
|
| | | */
|
| | | private String parkName;
|
| | |
|
| | | /**
|
| | | *主要责任人id
|
| | | */
|
| | | private Long mainLiabilityPersonId;
|
| | | /**
|
| | | * 主要责任人姓名
|
| | | */
|
| | | private String mainLiabilityPersonName;
|
| | | /**
|
| | | * 主要责任人类型
|
| | | */
|
| | | private String mainLiabilityPersonType;
|
| | | /**
|
| | | * 主要责任人电话
|
| | | */
|
| | | private Long mainLiabilityPersonPhone;
|
| | | /**
|
| | | * 主要责任人职务
|
| | | */
|
| | | private String mainLiabilityPersonJob;
|
| | | /**
|
| | | * 主要责任人任务
|
| | | */
|
| | | private String mainLiabilityPersonWork;
|
| | |
|
| | | /**
|
| | | *技术责任人id
|
| | | */
|
| | | private Long technologyLiabilityPersonId;
|
| | | /**
|
| | | * 技术责任人姓名
|
| | | */
|
| | | private String technologyLiabilityPersonName;
|
| | | /**
|
| | | * 技术责任人类型
|
| | | */
|
| | | private String technologyLiabilityPersonType;
|
| | | /**
|
| | | * 技术责任人电话
|
| | | */
|
| | | private Long technologyLiabilityPersonPhone;
|
| | | /**
|
| | | * 技术责任人职务
|
| | | */
|
| | | private String technologyLiabilityPersonJob;
|
| | | /**
|
| | | * 技术责任人任务
|
| | | */
|
| | | private String technologyLiabilityPersonWork;
|
| | |
|
| | | /**
|
| | | *操作责任人id
|
| | | */
|
| | | private Long handleLiabilityPersonId;
|
| | | /**
|
| | | * 操作责任人姓名
|
| | | */
|
| | | private String handleLiabilityPersonName;
|
| | | /**
|
| | | * 操作责任人类型
|
| | | */
|
| | | private String handleLiabilityPersonType;
|
| | | /**
|
| | | * 操作责任人电话
|
| | | */
|
| | | private Long handleLiabilityPersonPhone;
|
| | | /**
|
| | | * 操作责任人职务
|
| | | */
|
| | | private String handleLiabilityPersonJob;
|
| | | /**
|
| | | * 操作责任人任务
|
| | | */
|
| | | private String handleLiabilityPersonWork;
|
| | |
|
| | |
|
| | |
|
| | | /**
|
| | | * 创建时间
|
| | | */
|
| | | private Date gmtCreate;
|
| | | /**
|
| | | * 最后修改时间
|
| | | */
|
| | | private Date gmtModitify;
|
| | | /**
|
| | | * 创建人
|
| | | */
|
| | | private String createByUserName;
|
| | | /**
|
| | | * 修改人
|
| | | */
|
| | | private String lastEditUserName;
|
| | | /**
|
| | | * 删除标志:0-有效,1-删除
|
| | | */
|
| | | private Byte deleteStatus;
|
| | | }
|
| | |
|
| | | package com.ruoyi.doublePrevention.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 包保责任制 |
| | | */ |
| | | @Data |
| | | @TableName("risk_and_people_info") |
| | | public class RiskAndPeopleInfo implements Serializable { |
| | | private static final long serialVersionUID = -61793617513430361L; |
| | | |
| | | @TableId(value = "id" , type = IdType.AUTO) |
| | | private Long id; |
| | | /** |
| | | * 行政区划 |
| | | */ |
| | | private String areaCode; |
| | | /** |
| | | * 公司名称 |
| | | */ |
| | | private String companyName; |
| | | /** |
| | | * 企业类型 |
| | | */ |
| | | private String companyNature; |
| | | /** |
| | | * 企业类型名称 |
| | | */ |
| | | private String companyNatureName; |
| | | /** |
| | | * |
| | | */ |
| | | private String hazardId; |
| | | /** |
| | | * 危险源编码 |
| | | */ |
| | | private String hazardCode; |
| | | /** |
| | | * 危险源名称 |
| | | */ |
| | | private String hazardName; |
| | | /** |
| | | * 风险等级(数字) |
| | | */ |
| | | private String hazardRank; |
| | | /** |
| | | * 风险等级(汉字) |
| | | */ |
| | | private String hazardRankName; |
| | | /** |
| | | * 园区名称 |
| | | */ |
| | | private String parkName; |
| | | |
| | | /** |
| | | *主要责任人id |
| | | */ |
| | | private Long mainLiabilityPersonId; |
| | | /** |
| | | * 主要责任人姓名 |
| | | */ |
| | | private String mainLiabilityPersonName; |
| | | /** |
| | | * 主要责任人类型 |
| | | */ |
| | | private String mainLiabilityPersonType; |
| | | /** |
| | | * 主要责任人电话 |
| | | */ |
| | | private Long mainLiabilityPersonPhone; |
| | | /** |
| | | * 主要责任人职务 |
| | | */ |
| | | private String mainLiabilityPersonJob; |
| | | /** |
| | | * 主要责任人任务 |
| | | */ |
| | | private String mainLiabilityPersonWork; |
| | | |
| | | /** |
| | | *技术责任人id |
| | | */ |
| | | private Long technologyLiabilityPersonId; |
| | | /** |
| | | * 技术责任人姓名 |
| | | */ |
| | | private String technologyLiabilityPersonName; |
| | | /** |
| | | * 技术责任人类型 |
| | | */ |
| | | private String technologyLiabilityPersonType; |
| | | /** |
| | | * 技术责任人电话 |
| | | */ |
| | | private Long technologyLiabilityPersonPhone; |
| | | /** |
| | | * 技术责任人职务 |
| | | */ |
| | | private String technologyLiabilityPersonJob; |
| | | /** |
| | | * 技术责任人任务 |
| | | */ |
| | | private String technologyLiabilityPersonWork; |
| | | |
| | | /** |
| | | *操作责任人id |
| | | */ |
| | | private Long handleLiabilityPersonId; |
| | | /** |
| | | * 操作责任人姓名 |
| | | */ |
| | | private String handleLiabilityPersonName; |
| | | /** |
| | | * 操作责任人类型 |
| | | */ |
| | | private String handleLiabilityPersonType; |
| | | /** |
| | | * 操作责任人电话 |
| | | */ |
| | | private Long handleLiabilityPersonPhone; |
| | | /** |
| | | * 操作责任人职务 |
| | | */ |
| | | private String handleLiabilityPersonJob; |
| | | /** |
| | | * 操作责任人任务 |
| | | */ |
| | | private String handleLiabilityPersonWork; |
| | | |
| | | |
| | | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | private Date gmtCreate; |
| | | /** |
| | | * 最后修改时间 |
| | | */ |
| | | private Date gmtModitify; |
| | | /** |
| | | * 创建人 |
| | | */ |
| | | private String createByUserName; |
| | | /** |
| | | * 修改人 |
| | | */ |
| | | private String lastEditUserName; |
| | | /** |
| | | * 删除标志:0-有效,1-删除 |
| | | */ |
| | | private Byte deleteStatus; |
| | | } |
| | | |