zhangfeng
2023-07-22 ef406c4432c290f2627fa3742a1489e660dcc239
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package com.gk.hotwork.Domain.dto.resp;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.util.Date;
import java.util.List;
 
/**
 * @email 1603559716@qq.com
 * @author: zf
 * @date: 2023/7/20
 * @time: 16:24
 */
@Data
public class SafetySelfInspectionRespDTO {
    /** 自查清单名称  inspection_name **/
    private String inspectionName;
 
    /** 检查时间  inspection_time  **/
    @JsonFormat(pattern="yyyy-MM-dd",timezone = "GMT+8")
    private Date inspectionTime;
 
    /** 检察人员  inspector **/
    private Long inspector;
 
    /** 被检查公司id **/
    private Long checkedCompanyId;
 
    /** 被检查公司名字 **/
    private String checkedCompanyName;
 
    /** 状态 0:暂存 1:评审中 2:已评审  status **/
    private Integer status;
 
    /** 不合格项数  **/
    @TableField(exist = false)
    private Integer unqualifiedItem;
 
    /** 项数  **/
    @TableField(exist = false)
    private Integer itemSum;
 
    /** 合格率  **/
    private String qualifiedRate;
 
    /** 角色id  **/
    private Long roleid;
 
    /** 检察人员   **/
    private String inspectorName;
 
    /** 检查开始时间   **/
    @JsonFormat(pattern="yyyy-MM-dd",timezone = "GMT+8")
    private Date inspectionStartTime;
 
    /** 检查结束时间   **/
    @JsonFormat(pattern="yyyy-MM-dd",timezone = "GMT+8")
    private Date inspectionEndTime;
 
    /** 主键id  id **/
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /** 有效标识  valid_flag **/
    private Boolean validFlag;
 
    /** 创建时间  create_time **/
    private Date createTime;
 
    /** 创建人  create_by **/
    private String createBy;
 
    /** 最新更新时间  update_time **/
    private Date updateTime;
 
    /** 最后更新人  update_by **/
    private String updateBy;
 
    List<SafetySelfInspectionElementRespDTO> elementList;
}