zhangfeng
2022-11-21 99968f83982943669af3829ea6bc3bbe745cada4
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
package com.gkhy.safePlatform.equipment.entity;
 
import java.sql.Timestamp;
import com.gkhy.safePlatform.equipment.entity.BaseDomain;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.fasterxml.jackson.annotation.JsonFormat;
 
/**
 * 设备设施类型管理(EquipmentTypeMng)表实体类
 *
 * @author xurui
 * @since 2022-08-29 08:39:44
 */
@SuppressWarnings("serial")
@TableName("equipment_type_mng")
public class EquipmentTypeMng extends BaseDomain {
 
 
    @TableId(type = IdType.AUTO)
    private Long id;
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    //类别名称
    private String typeName;
 
    public String getTypeName() {
        return typeName;
    }
 
    public void setTypeName(String typeName) {
        this.typeName = typeName;
    }
    //是否为设备内容  1:是 2:否
    private Integer isContent;
 
    public Integer getIsContent() {
        return isContent;
    }
 
    public void setIsContent(Integer isContent) {
        this.isContent = isContent;
    }
    //父级ID,如果没有父级,为0
    private Long parentId;
 
    public Long getParentId() {
        return parentId;
    }
 
    public void setParentId(Long parentId) {
        this.parentId = parentId;
    }
    //排序号
    private Integer sortNum;
 
    public Integer getSortNum() {
        return sortNum;
    }
 
    public void setSortNum(Integer sortNum) {
        this.sortNum = sortNum;
    }
    //是否巡检 1:是 2:否
    private Integer isVisit;
 
    public Integer getIsVisit() {
        return isVisit;
    }
 
    public void setIsVisit(Integer isVisit) {
        this.isVisit = isVisit;
    }
    //是否检测  1:是 2:否
    private Integer isCheck;
 
    public Integer getIsCheck() {
        return isCheck;
    }
 
    public void setIsCheck(Integer isCheck) {
        this.isCheck = isCheck;
    }
    //是否删除 0:未删除 1:删除
    private Integer delFlag;
 
    public Integer getDelFlag() {
        return delFlag;
    }
 
    public void setDelFlag(Integer delFlag) {
        this.delFlag = delFlag;
    }
 
}