package com.example.springboot.entity;
|
|
import java.util.Date;
|
|
public class alarmmg {
|
private Integer id;
|
private String content;
|
private Date timeon;
|
private Date endTime;
|
|
public void setid(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getid() {
|
return id;
|
}
|
|
public void setontent(String content) {
|
this.content = content;
|
}
|
|
public String getcontent() {
|
return content;
|
}
|
|
public void settimeon(Date timeon) {
|
this.timeon = timeon;
|
}
|
|
public Date gettimeon() {
|
return timeon;
|
}
|
|
public void setendTime(Date endTime) {
|
this.endTime = endTime;
|
}
|
|
public Date getendTime() {
|
return endTime;
|
}
|
|
}
|