whyclxw
2025-05-28 e16302f9d475c7cc4dd18c5abf1a23cb5502e362
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
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableName;
 
/**
 * 告警是否允许自动消失参数设置
 */
 
@TableName(schema = "db_param",value = "tb_appalm_param")
public class AppAlmParam {
 
    private Integer num;
    private Integer almId;
    private String almName;
    /** 1-电池
     *  2-设备
     *  3-电源
     */
    private Integer almCategory;
    private Integer almAutoClearEn;
 
    public Integer getNum() {
        return num;
    }
 
    public void setNum(Integer num) {
        this.num = num;
    }
 
    public Integer getAlmId() {
        return almId;
    }
 
    public void setAlmId(Integer almId) {
        this.almId = almId;
    }
 
    public String getAlmName() {
        return almName;
    }
 
    public void setAlmName(String almName) {
        this.almName = almName;
    }
 
    public Integer getAlmCategory() {
        return almCategory;
    }
 
    public void setAlmCategory(Integer almCategory) {
        this.almCategory = almCategory;
    }
 
    public Integer getAlmAutoClearEn() {
        return almAutoClearEn;
    }
 
    public void setAlmAutoClearEn(Integer almAutoClearEn) {
        this.almAutoClearEn = almAutoClearEn;
    }
}