xiangpei
2024-07-23 f5e1051a7e6d3ffccc815a631d8be372d772c58f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package com.ycl.platform.domain.result.UY;
 
import lombok.Data;
 
/**
 * 点位在线率
 *
 * @author gonghl
 * @since 2024-4-19 11:37:30
 */
@Data
public class OnlineResult {
 
    /**
     * 行政区划编码
     */
    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;
 
}