优化指标查询
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
package com.njcn.csharmonic.param;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotBlank;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Description:
|
||||
* Date: 2023/6/14 15:09【需求编号】
|
||||
*
|
||||
* @author clam
|
||||
* @version V1.0.0
|
||||
*/
|
||||
@Data
|
||||
public class FrequencyStatisticalQueryParam {
|
||||
@ApiModelProperty(value = "监测点集")
|
||||
private List<String> lineList;
|
||||
@ApiModelProperty(value = "设备id")
|
||||
private String DevId;
|
||||
@ApiModelProperty(value = "指标id")
|
||||
@NotBlank(message="指标id不能为空")
|
||||
private String statisticalId;
|
||||
@ApiModelProperty(value = "取值类型(Max,Min,cp95,avg)")
|
||||
private String valueType;
|
||||
@ApiModelProperty(value = "频次开始")
|
||||
private Integer frequencyStart;
|
||||
@ApiModelProperty(value = "频次结束")
|
||||
private Integer frequencyEnd;
|
||||
|
||||
@ApiModelProperty(value = "开始时间")
|
||||
private String startTime;
|
||||
|
||||
@ApiModelProperty(value = "结束时间")
|
||||
private String endTime;
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user