定版bug修改
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
|
||||
@@ -11,6 +11,7 @@ import java.time.LocalDateTime;
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@TableName("pqs_onlinerate")
|
||||
@Deprecated
|
||||
public class OnlineRate extends BaseEntity {
|
||||
|
||||
@Column(name="Id")
|
||||
|
||||
@@ -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<>();
|
||||
|
||||
/**
|
||||
* 冀北分布式光伏概览通讯状态统计(专用)
|
||||
|
||||
@@ -24,6 +24,8 @@ public class DeviceOnlineDataVO implements Serializable {
|
||||
@ApiModelProperty("日")
|
||||
private String day;
|
||||
|
||||
private String dateView;
|
||||
|
||||
@ApiModelProperty("在线率")
|
||||
private Float onlineRate;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user