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;
|
}
|
}
|