海南大屏bug修改,暂态事件列表功能新增两个字段
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
package com.njcn.event.pojo.param;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* Description:
|
||||
* Date: 2024/11/21 14:57【需求编号】
|
||||
*
|
||||
* @author clam
|
||||
* @version V1.0.0
|
||||
*/
|
||||
@Data
|
||||
public class EventVerifyReasonParam {
|
||||
@ApiModelProperty(value = "暂时事件ID")
|
||||
private String eventId;
|
||||
|
||||
@ApiModelProperty(value = "暂降核实原因")
|
||||
private String verifyReason;
|
||||
|
||||
@ApiModelProperty(value = "暂降核实原因详情")
|
||||
private String verifyReasonDetail;
|
||||
}
|
||||
@@ -56,6 +56,15 @@ public class TransientParam extends DeviceInfoParam.BusinessParam {
|
||||
@ApiModelProperty("暂降类型")
|
||||
private List<String> eventType;
|
||||
|
||||
@ApiModelProperty("变电站")
|
||||
private List<String> substationIds;
|
||||
|
||||
@ApiModelProperty("线路")
|
||||
private List<String> lineIds;
|
||||
|
||||
@ApiModelProperty("暂降核实原因")
|
||||
private List<String> verifyReason;
|
||||
|
||||
@ApiModelProperty("波形文件")
|
||||
private Integer fileFlag;
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package com.njcn.event.pojo.po;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
@@ -109,6 +110,12 @@ public class EventDetailNew {
|
||||
@ApiModelProperty(value = "暂时事件ID")
|
||||
private String eventId;
|
||||
|
||||
@ApiModelProperty(value = "暂降核实原因")
|
||||
private String verifyReason;
|
||||
|
||||
@ApiModelProperty(value = "暂降核实原因详情")
|
||||
private String verifyReasonDetail;
|
||||
|
||||
|
||||
public String getStartTime() {
|
||||
return startTime;
|
||||
|
||||
@@ -108,6 +108,14 @@ public class RmpEventDetailPO implements Serializable {
|
||||
@ApiModelProperty(value = "波形路径")
|
||||
private String wavePath;
|
||||
|
||||
@ApiModelProperty(value = "暂降核实原因")
|
||||
@TableField("verify_reason")
|
||||
private String verifyReason;
|
||||
|
||||
@ApiModelProperty(value = "暂降核实原因详情")
|
||||
@TableField("verify_reason_detail")
|
||||
private String verifyReasonDetail;
|
||||
|
||||
private Double transientValue;
|
||||
|
||||
private LocalDateTime createTime;
|
||||
|
||||
Reference in New Issue
Block a user