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;
|
}
|
}
|