ZengTao
2023-09-17 dba117185ebab076ce8ae59c1df13f0d14f6cfe0
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
package com.example.springboot.entity;
 
import java.util.Date;
 
 
public class alarmmg {
  private Integer id;
  private String content;
  private Date timeon;
  private Date endTime;
 
  private String timeons;
 
  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;
  }
 
  public void settimeons(String timeons) {
    this.timeons = timeons;
  }
 
  public String gettimeons() {
    return timeons;
  }
 
}