1.暂降预览页面接口
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
package com.njcn.csharmonic.pojo.param;
|
||||
|
||||
import com.njcn.web.pojo.param.BaseParam;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
/**
|
||||
* @Author: cdf
|
||||
* @CreateTime: 2025-11-21
|
||||
* @Description:
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class EventStatisticParam extends BaseParam {
|
||||
|
||||
/**
|
||||
* 监测点id
|
||||
*/
|
||||
@ApiModelProperty("监测点id")
|
||||
private String lineId;
|
||||
|
||||
/**
|
||||
* 安装位置
|
||||
*/
|
||||
@ApiModelProperty("字典表:安装位置(负载侧,电网侧, 输出侧)")
|
||||
private String position;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
package com.njcn.csharmonic.pojo.vo.event;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
/**
|
||||
* @Author: cdf
|
||||
* @CreateTime: 2025-11-24
|
||||
* @Description:
|
||||
*/
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class EventCoordsVO {
|
||||
|
||||
@ApiModelProperty(name = "x",value = "x轴")
|
||||
private Integer x;
|
||||
|
||||
@ApiModelProperty(name = "y",value = "y轴")
|
||||
private Integer y;
|
||||
|
||||
@ApiModelProperty(name = "z",value = "z轴")
|
||||
private Integer z;
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
package com.njcn.csharmonic.pojo.vo.event;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import io.swagger.models.auth.In;
|
||||
import lombok.Data;
|
||||
import org.apache.ibatis.javassist.runtime.Inner;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Author: cdf
|
||||
* @CreateTime: 2025-11-20
|
||||
* @Description:
|
||||
*/
|
||||
@Data
|
||||
public class EventStatisticVO {
|
||||
|
||||
private String id;
|
||||
|
||||
@ApiModelProperty(value = "名称")
|
||||
private String name;
|
||||
|
||||
@ApiModelProperty(value = "暂降")
|
||||
private Integer eventDown = 0;
|
||||
|
||||
@ApiModelProperty(value = "中断")
|
||||
private Integer eventOff = 0;
|
||||
|
||||
@ApiModelProperty(value = "暂升")
|
||||
private Integer eventUp = 0;
|
||||
|
||||
@ApiModelProperty(value = "总数")
|
||||
private Integer allNum = 0;
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
package com.njcn.csharmonic.pojo.vo.event;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* @Author: cdf
|
||||
* @CreateTime: 2025-11-21
|
||||
* @Description:
|
||||
*/
|
||||
@Data
|
||||
public class F47Curve {
|
||||
|
||||
private String id;
|
||||
|
||||
private String tag;
|
||||
|
||||
private BigDecimal persistTime;
|
||||
|
||||
private BigDecimal amplitude;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user