双重预防项目-国泰新华二开定制版
16639036659
2024-06-18 4fb65d8e3c5fc8ddb8882a355cd31ecb9d51f3d9
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package com.ruoyi.project.tr.specialCheck.domin.DTO;
 
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_score_and_danger_log")
public class TbSpecialCheckScoreAndDangerLogQueryDTO {
 
 
    @TableId(type = IdType.AUTO)
    private Long indexId;
 
    private String id;
 
    private String companyCode;
 
 
 
    private String dangerId;
 
    private String dangerName;
 
    private String taskId;
 
    private String checkType;
 
    private String checkItemId;
 
    private String checkScoreId;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private LocalDateTime checkDate;
 
    private String checkPay;
 
    private String harmType;
 
    private String isReject;
 
    private String deductPoint;
 
    private String deductIllustrate;
 
 
 
    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;
}