package cn.iocoder.yudao.module.bi.controller.admin.decision.vo;
|
|
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
@Schema(description = "管理后台 - 预警记录分页 Request VO")
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
public class DecisionAlertPageReqVO extends PageParam {
|
|
@Schema(description = "状态:0-未处理 1-已确认 2-已处理", example = "0")
|
private Integer status;
|
|
@Schema(description = "严重级别:1-警告 2-严重 3-紧急", example = "1")
|
private Integer severity;
|
|
@Schema(description = "KPI编码", example = "power_supply_amount")
|
private String kpiCode;
|
|
}
|