dengzedong
2025-02-13 4af6b1e2c41365936df308eea6fa50e269eca3b6
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
package com.iailab.module.model.api.mcs.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.iailab.framework.common.pojo.PageParam;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.util.Date;
import java.util.List;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2025年01月07日
 */
@Schema(description = "RPC 模型 - 预警和建议 DTO")
@Data
public class StAlarmAndSuggestPageReqVO extends PageParam {
 
    @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;
 
    @Schema(description = "结束时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date endTime;
 
    @Schema(description = "对象集合")
    private List<String> objList;
 
}