| | |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author PanZhibao |
| | |
| | | @Schema(description = "对象") |
| | | private String obj; |
| | | |
| | | @Schema(description = "类型(alarm:预警,suggest:建议)") |
| | | private String type; |
| | | |
| | | @Schema(description = "开始时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date startTime; |
| | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date endTime; |
| | | |
| | | @Schema(description = "对象集合") |
| | | private List<String> objList; |
| | | |
| | | @Schema(description = "标题") |
| | | private List<String> title; |
| | | |
| | | @Schema(description = "关键字") |
| | | private List<String> contentKey; |
| | | |
| | | } |