package com.ycl.platform.domain.dto;
|
|
import lombok.Data;
|
|
/**
|
* 点位在线率
|
*
|
* @author gonghl
|
* @since 2024-4-19 11:37:30
|
*/
|
@Data
|
public class OnlineStatisticsDTO {
|
|
|
/**
|
* 行政区划编码
|
*/
|
private String arealayernoCode;
|
|
/**
|
* 行政区划名称
|
*/
|
private String arealayernoName;
|
|
/**
|
* 诊断日期
|
*/
|
private String diagDate;
|
|
/**
|
* 统计纬度
|
*/
|
private String dim;
|
|
/**
|
* icmp离线数
|
*/
|
private Integer icmpOfflineNum;
|
|
/**
|
* icmp在线数
|
*/
|
private Integer icmpOnlineNum;
|
|
/**
|
* icmp在线率,格式为百分比字符串,如 "99.9%"
|
*/
|
private String icmpOnlineRate;
|
|
/**
|
* icmp诊断总数
|
*/
|
private Integer icmpTotalNum;
|
|
/**
|
* 离线数
|
*/
|
private Integer offlineNum;
|
|
/**
|
* 在线数
|
*/
|
private Integer onlineNum;
|
|
/**
|
* 在线率,格式为百分比字符串,如 "99.9%"
|
*/
|
private String onlineRate;
|
|
/**
|
* 页码
|
*/
|
private Integer pageNum;
|
|
/**
|
* 分页大小
|
*/
|
private Integer pageSize;
|
|
/**
|
* 排序属性
|
*/
|
private String sortFiled;
|
|
/**
|
* 诊断总数
|
*/
|
private Integer totalNum;
|
|
}
|