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;
|
|
/**
|
* 状态(0未处理 1已采纳 2已忽略)
|
*/
|
private Integer status;
|
|
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;
|
}
|
}
|