houzhongjian
2025-03-12 e08eccd6e5855891694cad5490c00d62750cf41f
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
package com.iailab.sdk.auth.client.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2025年01月07日
 */
public class StAlarmAndSuggestRespDTO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * 类型(预警:alarm,建议:suggest)
     */
    private String type;
 
    /**
     * 标题
     */
    private String title;
 
    /**
     * 内容
     */
    private String content;
 
    /**
     * 对象
     */
    private String obj;
 
    /**
     * 时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date time;
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public String getObj() {
        return obj;
    }
 
    public void setObj(String obj) {
        this.obj = obj;
    }
 
    public Date getTime() {
        return time;
    }
 
    public void setTime(Date time) {
        this.time = time;
    }
}