lxw
2023-05-25 f3c27fb78447449a950ba73c5e72ceda64ad8a12
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.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import org.apache.ibatis.type.Alias;
 
@Alias("AlarmVoiceSet")
@TableName(schema = "web_site",value = "tb_alarm_voice_set")
public class AlarmVoiceSet {
    @TableId(type = IdType.AUTO)
    private Integer id;
    private Integer battGroupId;
    private Long deviceId;
    private Long powerDeviceId;
    private Integer alarmType;
    private Integer nextTimeInterval;
    private Integer userId;
    private Integer status;
    private Long nextTimestamp;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getBattGroupId() {
        return battGroupId;
    }
 
    public void setBattGroupId(Integer battGroupId) {
        this.battGroupId = battGroupId;
    }
 
    public Long getDeviceId() {
        return deviceId;
    }
 
    public void setDeviceId(Long deviceId) {
        this.deviceId = deviceId;
    }
 
    public Long getPowerDeviceId() {
        return powerDeviceId;
    }
 
    public void setPowerDeviceId(Long powerDeviceId) {
        this.powerDeviceId = powerDeviceId;
    }
 
    public Integer getAlarmType() {
        return alarmType;
    }
 
    public void setAlarmType(Integer alarmType) {
        this.alarmType = alarmType;
    }
 
    public Integer getNextTimeInterval() {
        return nextTimeInterval;
    }
 
    public void setNextTimeInterval(Integer nextTimeInterval) {
        this.nextTimeInterval = nextTimeInterval;
    }
 
    public Integer getUserId() {
        return userId;
    }
 
    public void setUserId(Integer userId) {
        this.userId = userId;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public Long getNextTimestamp() {
        return nextTimestamp;
    }
 
    public void setNextTimestamp(Long nextTimestamp) {
        this.nextTimestamp = nextTimestamp;
    }
}