yang_shj
5 months ago
8 changed files with 280 additions and 43 deletions
@ -0,0 +1,52 @@
|
||||
package com.hnac.hzims.operational.history.vo; |
||||
|
||||
|
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
import java.time.LocalDateTime; |
||||
|
||||
/** |
||||
* @author ysj |
||||
*/ |
||||
@Data |
||||
@ApiModel(value = "历史告警数据查询") |
||||
public class HistoricalCurveVo { |
||||
|
||||
@ApiModelProperty(value = "第一个点位") |
||||
private String firstAttrId; |
||||
|
||||
@ApiModelProperty(value = "第二个点位") |
||||
private String secondAttrId; |
||||
|
||||
@ApiModelProperty(value = "第三个点位") |
||||
private String thirdlyAttrId; |
||||
|
||||
@ApiModelProperty(value = "第四个点位") |
||||
private String fourthAttrId; |
||||
|
||||
@ApiModelProperty(value = "第五个点位") |
||||
private String fifthAttrId; |
||||
|
||||
@ApiModelProperty(value = "第五个点位") |
||||
private LocalDateTime startTime; |
||||
|
||||
@ApiModelProperty(value = "第五个点位") |
||||
private LocalDateTime endTime; |
||||
|
||||
@ApiModelProperty(value = "厂组点/设备") |
||||
private Integer dimension; |
||||
|
||||
@ApiModelProperty(value = "维度 :0-10秒 、 1-1分钟 、2-5分钟 .....") |
||||
private Integer intervalType; |
||||
|
||||
@ApiModelProperty(value = "是否分页") |
||||
private Boolean isPage; |
||||
|
||||
@ApiModelProperty(value = "页码") |
||||
private Integer current; |
||||
|
||||
@ApiModelProperty(value = "页码条数") |
||||
private Integer pageSize; |
||||
} |
@ -0,0 +1,32 @@
|
||||
package com.hnac.hzims.operational.history.vo; |
||||
|
||||
|
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* @author ysj |
||||
*/ |
||||
@Data |
||||
@ApiModel(value = "历史告警数据查询") |
||||
public class HistoryProjectAlarmVo { |
||||
|
||||
@ApiModelProperty(value = "站点编号") |
||||
private String projectId; |
||||
|
||||
@ApiModelProperty(value = "维度") |
||||
private Integer dimension; |
||||
|
||||
@ApiModelProperty(value = "主键Id") |
||||
private String id; |
||||
|
||||
@ApiModelProperty(value = "告警类型") |
||||
private Integer soeType; |
||||
|
||||
@ApiModelProperty(value = "开始时间") |
||||
private String startTime; |
||||
|
||||
@ApiModelProperty(value = "结束时间") |
||||
private String endTime; |
||||
} |
Loading…
Reference in new issue