songhuangfeng123
2022-08-09 dc1f8126ce1e5ff191a122a84ea65f4ba6918a04
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package com.gkhy.safePlatform.equipment.entity;
 
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
 
/**
 * 设备检查标准设置(EquipmentCheckStandardDetail)表实体类
 *
 * @author xurui
 * @since 2022-07-20 09:24:14
 */
@SuppressWarnings("serial")
@TableName("equipment_check_standard_detail")
public class EquipmentCheckStandardDetail extends BaseDomain {
    
    
    @TableId(type = IdType.AUTO)
    private Long id;
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
                //具体类型(页面左侧的导航栏使用) 0:仪器仪表信息 1:生产设备设施 2:安全设备设施  3:重点监管装置/设备
    private Integer infoTpe;
        
    public Integer getInfoTpe() {
        return infoTpe;
    }
 
    public void setInfoTpe(Integer infoTpe) {
        this.infoTpe = infoTpe;
    }
                //设备ID/外键
    private Long equipmentId;
        
    public Long getEquipmentId() {
        return equipmentId;
    }
 
    public void setEquipmentId(Long equipmentId) {
        this.equipmentId = equipmentId;
    }
                //序号
    private String indexNum;
        
    public String getIndexNum() {
        return indexNum;
    }
 
    public void setIndexNum(String indexNum) {
        this.indexNum = indexNum;
    }
                //检查内容
    private String checkContent;
        
    public String getCheckContent() {
        return checkContent;
    }
 
    public void setCheckContent(String checkContent) {
        this.checkContent = checkContent;
    }
                //检查指标
    private String checkTarget;
        
    public String getCheckTarget() {
        return checkTarget;
    }
 
    public void setCheckTarget(String checkTarget) {
        this.checkTarget = checkTarget;
    }
                //单位
    private String unit;
        
    public String getUnit() {
        return unit;
    }
 
    public void setUnit(String unit) {
        this.unit = unit;
    }
                //巡检部位
    private String checkPart;
        
    public String getCheckPart() {
        return checkPart;
    }
 
    public void setCheckPart(String checkPart) {
        this.checkPart = checkPart;
    }
                //频次
    private String rate;
        
    public String getRate() {
        return rate;
    }
 
    public void setRate(String rate) {
        this.rate = rate;
    }
            
}