| | |
| | | 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;
|
| | |
| | |
|
| | | private String checkType;
|
| | |
|
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
| | | private LocalDateTime checkDate;
|
| | |
|
| | | private String resultStatus;
|
| | |
| | |
|
| | | 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;
|