| | |
| | | package com.ruoyi.project.tr.specialCheck.domin;
|
| | |
|
| | | import com.baomidou.mybatisplus.annotation.IdType;
|
| | | import com.baomidou.mybatisplus.annotation.TableId;
|
| | | import com.baomidou.mybatisplus.annotation.TableName;
|
| | | import com.fasterxml.jackson.annotation.JsonFormat;
|
| | | import lombok.Data;
|
| | |
|
| | | import java.time.LocalDateTime;
|
| | |
|
| | | @Data
|
| | | @TableName("tb_special_check_task_log")
|
| | | public class TbSpecialCheckTaskLog {
|
| | |
|
| | |
|
| | | @TableId(type = IdType.AUTO)
|
| | | private Long indexId;
|
| | |
|
| | | private String id;
|
| | |
|
| | | private String companyCode;
|
| | |
|
| | | private String hazardCode;
|
| | |
|
| | | private String hazardSource;
|
| | |
|
| | | private String taskId;
|
| | |
|
| | | private String checkType;
|
| | |
|
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
| | | private LocalDateTime checkDate;
|
| | |
|
| | | private String resultStatus;
|
| | |
|
| | | private Byte deleted;
|
| | |
|
| | | private String createBy;
|
| | |
|
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
| | | private LocalDateTime createDate;
|
| | |
|
| | | private String updateBy;
|
| | |
|
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
| | | private LocalDateTime updateDate;
|
| | |
|
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
| | | private LocalDateTime reportTime;
|
| | |
|
| | | private Byte reportStatus;
|
| | | }
|
| | | package com.ruoyi.project.tr.specialCheck.domin; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDateTime; |
| | | |
| | | @Data |
| | | @TableName("tb_special_check_task_log") |
| | | public class TbSpecialCheckTaskLog { |
| | | |
| | | |
| | | @TableId(type = IdType.AUTO) |
| | | private Long indexId; |
| | | |
| | | private String id; |
| | | |
| | | private String companyCode; |
| | | |
| | | private String hazardCode; |
| | | |
| | | private String hazardSource; |
| | | |
| | | private String taskId; |
| | | |
| | | private String checkType; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime checkDate; |
| | | |
| | | private String resultStatus; |
| | | |
| | | private Byte deleted; |
| | | |
| | | private String createBy; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime createDate; |
| | | |
| | | private String updateBy; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime updateDate; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime reportTime; |
| | | |
| | | private Byte reportStatus; |
| | | } |