‘liusuyi’
2023-07-13 35d87ba0e7567ec001123ef7d83e63f211dc02e7
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
package com.ruoyi.alarm.config.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
/**
 * 报警类型用户关联对象 ard_alarm_type_user
 * 
 * @author ard
 * @date 2023-06-21
 */
 
public class ArdAlarmTypeConfig extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 记录ID */
    private String id;
 
    /** 报警代码 */
    private Integer command;
 
    /** 报警类型 */
    @Excel(name = "报警类型")
    private String alarmType;
 
    /** 用户ID */
    @Excel(name = "用户ID")
    private String userId;
 
    public void setId(String id) 
    {
        this.id = id;
    }
 
    public String getId() 
    {
        return id;
    }
    public void setCommand(Integer command) 
    {
        this.command = command;
    }
 
    public Integer 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;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("command", getCommand())
            .append("alarmType", getAlarmType())
            .append("createBy", getCreateBy())
            .append("createTime", getCreateTime())
            .append("userId", getUserId())
            .toString();
    }
}