龚焕茏
2024-03-07 8af76e086fab5fc346e0431d18797c1ff82af8dc
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
package org.dromara.demo.domain;
 
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.io.Serial;
import java.util.Date;
 
/**
 * 安全隐患信息对象 rs_danger_info
 *
 * @author gonghl
 * @date 2024-02-27
 */
@Data
@TableName("rs_danger_info")
public class RsDangerInfo {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * 编号
     */
    @TableId(value = "id")
    private Long id;
 
    /**
     * 通报时间
     */
    private String notificationTime;
 
    /**
     * 隐患类型
     */
    private String dangerType;
 
    /**
     * 责任单位
     */
    private String accountabilityUnit;
 
    /**
     * 整改时限
     */
    private String rectificationTimeLimit;
 
    /**
     * 完成情况
     */
    private String performance;
 
    /**
     * 启用状态 1启用 2未启用
     */
    private Long status;
 
    /**
     * 创建时间
     */
    private Date createTime;
 
}