admin
2024-04-09 3d28cc569ff9bdf20ac56598ae4de8e2809d6f35
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
package com.ruoyi.system.domain;
 
import com.ruoyi.common.core.domain.BaseEntity;
 
public class AiAlarmType extends BaseEntity {
    private static final long serialVersionUID = 1L;
    /** 主键自增 */
    private Long id;
    /** 报警类型大类 */
    private String alarmBigType;
    /** 报警类型小类 */
    private String alarmSmallType;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getAlarmBigType() {
        return alarmBigType;
    }
 
    public void setAlarmBigType(String alarmBigType) {
        this.alarmBigType = alarmBigType;
    }
 
    public String getAlarmSmallType() {
        return alarmSmallType;
    }
 
    public void setAlarmSmallType(String alarmSmallType) {
        this.alarmSmallType = alarmSmallType;
    }
 
    @Override
    public String toString() {
        return "AiAlarmType{" +
                "id=" + id +
                ", alarmBigType='" + alarmBigType + '\'' +
                ", alarmSmallType='" + alarmSmallType + '\'' +
                '}';
    }
}