liusuyi
2023-07-26 4b838e2a64b4f441819f43fccd067c076eb422b9
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.ruoyi.alarm.config.domain;
 
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
/**
 * 报警类型用户关联对象 ard_alarm_type_user
 * 
 * @author ard
 * @date 2023-06-21
 */
 
public class ArdAlarmTypeConfig extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 用户ID */
    @Excel(name = "用户ID")
    private String userId;
 
    /** 报警代码 */
    private String command;
 
    /** 报警类型 */
    @Excel(name = "报警类型")
    private String alarmType;
 
 
 
    public void setCommand(String command)
    {
        this.command = command;
    }
 
    public String getCommand()
    {
        return command;
    }
    public void setAlarmType(String alarmType) 
    {
        this.alarmType = alarmType;
    }
 
    public String getAlarmType() 
    {
        return alarmType;
    }
    public void setUserId(String userId) 
    {
        this.userId = userId;
    }
 
    public String getUserId() 
    {
        return userId;
    }
 
 
}