定版bug修改

This commit is contained in:
2025-07-15 16:30:54 +08:00
parent bc5abdae14
commit b93db7cd08
8 changed files with 155 additions and 211 deletions

View File

@@ -26,7 +26,7 @@ public class PulicTimeParam {
@Pattern(regexp = PatternRegex.TIME_FORMAT, message = "时间格式错误")
private String searchEndTime;
@ApiModelProperty("时间标识:0--年/季度1--月")
@ApiModelProperty("统计类型 1.年 2.季 3.月 4.周 5.天")
private Integer timeFlag;
}

View File

@@ -11,6 +11,7 @@ import java.time.LocalDateTime;
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("pqs_onlinerate")
@Deprecated
public class OnlineRate extends BaseEntity {
@Column(name="Id")

View File

@@ -7,6 +7,7 @@ import lombok.Data;
import java.io.Serializable;
import java.time.Instant;
import java.util.ArrayList;
import java.util.List;
/**
@@ -21,12 +22,12 @@ public class CommunicateVO implements Serializable {
/**
* 更新时间
*/
private List<String> updateTime;
private List<String> updateTime = new ArrayList<>();
/**
* 事件类型(0中断1正常2退出)
*/
private List<Integer> type;
private List<Integer> type = new ArrayList<>();
/**
* 冀北分布式光伏概览通讯状态统计(专用)

View File

@@ -24,6 +24,8 @@ public class DeviceOnlineDataVO implements Serializable {
@ApiModelProperty("")
private String day;
private String dateView;
@ApiModelProperty("在线率")
private Float onlineRate;
}