双重预防项目-国泰新华二开定制版
16639036659
2024-06-13 352c5c4c62875306ef7db8d61688bf7fc8a6e842
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.ruoyi.project.tr.specialCheck.domin.DTO;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.time.LocalDateTime;
import java.util.Date;
 
@Data
public class TbSpecialCheckTaskLogDateDTO {
 
 
    private Long indexId;
 
    private String id;
 
    private String companyCode;
 
    private String hazardCode;
    private String hazardSource;
 
    private String taskId;
 
    private String checkType;
 
    private Date checkDate;
 
    private String resultStatus;
 
    private Byte deleted;
 
    private String createBy;
 
    private Date createDate;
 
    private String updateBy;
 
    private Date updateDate;
 
    private Date reportTime;
 
    private Byte reportStatus;
}