zbj//大屏获取暂降事件最新50条数据
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
package com.njcn.device.pq.pojo.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @version 1.0.0
|
||||
* @author: zbj
|
||||
* @date: 2023/04/03
|
||||
*/
|
||||
@Data
|
||||
public class EventVO implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 发生时间
|
||||
*/
|
||||
@ApiModelProperty("发生时间")
|
||||
private String time;
|
||||
|
||||
/**
|
||||
* 监测点名称
|
||||
*/
|
||||
@ApiModelProperty("监测点名称")
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* 暂降原因
|
||||
*/
|
||||
@ApiModelProperty("暂降原因")
|
||||
private String reason;
|
||||
|
||||
/**
|
||||
* 暂降类型
|
||||
*/
|
||||
@ApiModelProperty("暂降类型")
|
||||
private String type;
|
||||
|
||||
/**
|
||||
* 暂降幅值
|
||||
*/
|
||||
@ApiModelProperty("暂降幅值")
|
||||
private String amplitude;
|
||||
|
||||
/**
|
||||
* 持续时间
|
||||
*/
|
||||
@ApiModelProperty("持续时间")
|
||||
private String duration;
|
||||
}
|
||||
Reference in New Issue
Block a user