高低电压穿越相关接口走算法模块
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
package com.njcn.harmonic.pojo.param;
|
||||
|
||||
import com.njcn.web.pojo.param.BaseParam;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import javax.validation.constraints.NotBlank;
|
||||
import java.time.LocalDate;
|
||||
|
||||
/**
|
||||
* 有功功率趋势实分页查询类
|
||||
* @author guofeihu
|
||||
* @date 2024-08-20
|
||||
*/
|
||||
@Data
|
||||
public class RActivePowerRangeQueryParam extends BaseParam {
|
||||
|
||||
@Data
|
||||
public static class RActivePowerRangeEdit{
|
||||
@ApiModelProperty("id")
|
||||
private String id;
|
||||
|
||||
@NotBlank(message = "监测点ID不能为空")
|
||||
@ApiModelProperty("监测点(*)")
|
||||
private String lineId;
|
||||
|
||||
@NotBlank(message = "日期不能为空")
|
||||
@ApiModelProperty("日期(*)")
|
||||
private LocalDate timeId;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user