代码调整
This commit is contained in:
@@ -0,0 +1,74 @@
|
||||
package com.njcn.event.pojo.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 监测点电压暂降和短时中断分布情况(用于前端表格展示)
|
||||
* @Title EventDipShortDistributionTableVO
|
||||
* @Package com.njcn.event.pojo.vo
|
||||
* @Author jianghaifei
|
||||
* @Date 2022-10-31 14:35
|
||||
* @Version V1.0
|
||||
*/
|
||||
@Data
|
||||
public class EventDipShortDistributionTableVO implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
|
||||
/**
|
||||
* 特征幅值
|
||||
*/
|
||||
@ApiModelProperty(name = "featureAmplitude",value = "特征幅值")
|
||||
private String featureAmplitude;
|
||||
|
||||
|
||||
/**
|
||||
* 持续时间0-100ms
|
||||
*/
|
||||
@ApiModelProperty(name = "duration100",value = "持续时间0-100ms")
|
||||
private Integer duration100;
|
||||
|
||||
/**
|
||||
* 持续时间100-250ms
|
||||
*/
|
||||
@ApiModelProperty(name = "duration250",value = "持续时间100-250ms")
|
||||
private Integer duration250;
|
||||
|
||||
/**
|
||||
* 持续时间250-500ms
|
||||
*/
|
||||
@ApiModelProperty(name = "duration500",value = "持续时间250-500ms")
|
||||
private Integer duration500;
|
||||
/**
|
||||
* 持续时间500-1000ms
|
||||
*/
|
||||
@ApiModelProperty(name = "duration1000",value = "持续时间500-1000ms")
|
||||
private Integer duration1000;
|
||||
/**
|
||||
* 持续时间1000-3000ms
|
||||
*/
|
||||
@ApiModelProperty(name = "duration3000",value = "持续时间1000-3000ms")
|
||||
private Integer duration3000;
|
||||
|
||||
/**
|
||||
* 持续时间3000-10000ms
|
||||
*/
|
||||
@ApiModelProperty(name = "duration10000",value = "持续时间3000-10000ms")
|
||||
private Integer duration10000;
|
||||
|
||||
/**
|
||||
* 持续时间10000-20000ms
|
||||
*/
|
||||
@ApiModelProperty(name = "duration20000",value = "持续时间10000-20000ms")
|
||||
private Integer duration20000;
|
||||
/**
|
||||
* 持续时间20000-60000ms
|
||||
*/
|
||||
@ApiModelProperty(name = "duration60000",value = "持续时间20000-60000ms")
|
||||
private Integer duration60000;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
package com.njcn.event.pojo.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**监测点电压暂升分布情况(用于前端表格展示)
|
||||
* @Title EventRiseDistributionTableVO
|
||||
* @Package com.njcn.event.pojo.vo
|
||||
* @Author jianghaifei
|
||||
* @Date 2022-10-31 15:17
|
||||
* @Version V1.0
|
||||
*/
|
||||
@Data
|
||||
public class EventRiseDistributionTableVO implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 特征幅值
|
||||
*/
|
||||
@ApiModelProperty(name = "featureAmplitude",value = "特征幅值")
|
||||
private String featureAmplitude;
|
||||
|
||||
/**
|
||||
* 持续时间100ms-500ms
|
||||
*/
|
||||
@ApiModelProperty(name = "duration500",value = "持续时间100ms-500ms")
|
||||
private Integer duration500;
|
||||
|
||||
/**
|
||||
* 持续时间500ms-5000ms
|
||||
*/
|
||||
@ApiModelProperty(name = "duration5000",value = "持续时间500ms-5000ms")
|
||||
private Integer duration5000;
|
||||
|
||||
/**
|
||||
* 持续时间5000ms-60000ms
|
||||
*/
|
||||
@ApiModelProperty(name = "duration60000",value = "持续时间5000ms-60000ms")
|
||||
private Integer duration60000;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user