| | |
| | | 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.util.Date;
|
| | | @Data
|
| | | @TableName("prevent_risk_danger_check_log")
|
| | | public class PreventRiskDangerCheckLog {
|
| | |
|
| | | /**
|
| | | * 主键
|
| | | * */
|
| | | @TableId(value = "id" , type = IdType.AUTO)
|
| | | private Long id;
|
| | | /**
|
| | | * uuid
|
| | | * */
|
| | | private String uuid;
|
| | | /**
|
| | | * 排查任务id
|
| | | * */
|
| | | private Long checkId;
|
| | | /**
|
| | | * 排查结果:0-正常,1-存在隐患,2-未处理,3其他
|
| | | * */
|
| | | private Byte checkStatus;
|
| | | /**
|
| | | * job id
|
| | | * */
|
| | | private Long jobId;
|
| | | /**
|
| | | * 同步时间
|
| | | */
|
| | | private Date reportTime;
|
| | | /**
|
| | | * 同步数据修改时间
|
| | | */
|
| | | private Date updateReportDataTime;
|
| | | /**
|
| | | * 上报状态 1-待上报;2-已上报;3-不上报;4-变更需上传
|
| | | */
|
| | | private Byte reportStatus;
|
| | | /**
|
| | | * 上报开关 1-上报;2-不上报
|
| | | */
|
| | | private Byte reportSwitch;
|
| | |
|
| | | private Long mobileCode;
|
| | |
|
| | | private Long dangerCheckPointId;
|
| | | }
|
| | | 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.util.Date; |
| | | @Data |
| | | @TableName("prevent_risk_danger_check_log") |
| | | public class PreventRiskDangerCheckLog { |
| | | |
| | | /** |
| | | * 主键 |
| | | * */ |
| | | @TableId(value = "id" , type = IdType.AUTO) |
| | | private Long id; |
| | | /** |
| | | * uuid |
| | | * */ |
| | | private String uuid; |
| | | /** |
| | | * 排查任务id |
| | | * */ |
| | | private Long checkId; |
| | | /** |
| | | * 排查结果:0-正常,1-存在隐患,2-未处理,3其他 |
| | | * */ |
| | | private Byte checkStatus; |
| | | /** |
| | | * job id |
| | | * */ |
| | | private Long jobId; |
| | | /** |
| | | * 同步时间 |
| | | */ |
| | | private Date reportTime; |
| | | /** |
| | | * 同步数据修改时间 |
| | | */ |
| | | private Date updateReportDataTime; |
| | | /** |
| | | * 上报状态 1-待上报;2-已上报;3-不上报;4-变更需上传 |
| | | */ |
| | | private Byte reportStatus; |
| | | /** |
| | | * 上报开关 1-上报;2-不上报 |
| | | */ |
| | | private Byte reportSwitch; |
| | | |
| | | private Long mobileCode; |
| | | |
| | | private Long dangerCheckPointId; |
| | | } |