liusuyi
2024-08-08 57c673aa3e83677bcf5d30b4b45d06bae6609db8
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
82
83
84
85
86
87
88
89
90
91
92
93
package com.ruoyi.sy.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_tank_lock_alarm
 * 
 * @author ard
 * @date 2024-07-26
 */
public class ArdTankLockAlarm extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 锁编号 */
    @Excel(name = "锁编号")
    private String lockNum;
 
    /** 报警信息 */
    @Excel(name = "报警信息")
    private String alarmInfo;
 
    /** 主键 */
    private String id;
 
    /** 锁主键 */
    @Excel(name = "锁主键")
    private String lockId;
 
    /** 报警时间 */
    @Excel(name = "报警时间")
    private String alarmTime;
 
    public void setLockNum(String lockNum) 
    {
        this.lockNum = lockNum;
    }
 
    public String getLockNum() 
    {
        return lockNum;
    }
    public void setAlarmInfo(String alarmInfo) 
    {
        this.alarmInfo = alarmInfo;
    }
 
    public String getAlarmInfo() 
    {
        return alarmInfo;
    }
    public void setId(String id) 
    {
        this.id = id;
    }
 
    public String getId() 
    {
        return id;
    }
    public void setLockId(String lockId) 
    {
        this.lockId = lockId;
    }
 
    public String getLockId() 
    {
        return lockId;
    }
    public void setAlarmTime(String alarmTime) 
    {
        this.alarmTime = alarmTime;
    }
 
    public String getAlarmTime() 
    {
        return alarmTime;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("lockNum", getLockNum())
            .append("alarmInfo", getAlarmInfo())
            .append("id", getId())
            .append("lockId", getLockId())
            .append("alarmTime", getAlarmTime())
            .toString();
    }
}