fuliqi
2024-08-08 7af792b0e548518e5116ecc88796cc288c968326
ycl-pojo/src/main/java/com/ycl/platform/domain/result/UY/OnlineResult.java
@@ -1,7 +1,12 @@
package com.ycl.platform.domain.result.UY;
import com.ycl.platform.domain.result.HK.BaseResult;
import com.ycl.platform.domain.result.BaseResult;
import lombok.Data;
import org.springframework.data.mongodb.core.index.TextIndexed;
import org.springframework.data.mongodb.core.mapping.Document;
import java.util.Date;
import java.util.List;
/**
 * 点位在线率
@@ -10,81 +15,106 @@
 * @since 2024-4-19 11:37:30
 */
@Data
public class OnlineResult{
@Document(collection = "uy_online")
public class OnlineResult extends BaseResult {
    /**
     * 行政区划编码
     */
    private String arealayernoCode;
    private String arealayerPath;
    /**
     * 行政区划编码
     */
    private String arealayerno;
    /**
     * 行政区划名称
     */
    private String arealayernoName;
    @TextIndexed
    private String arealayerName;
    /**
     * 诊断日期
     * 解码状态码
     */
    private String diagDate;
    private Integer decodingCode;
    /**
     * 统计纬度
     * 设备id
     */
    private String dim;
    private Integer deviceId;
    /**
     * icmp离线数
     * 设备名称
     */
    private Integer icmpOfflineNum;
    private String deviceName;
    /**
     * icmp在线数
     * icmp延迟
     */
    private Integer icmpOnlineNum;
    private Double icmpDelay;
    /**
     * icmp在线率,格式为百分比字符串,如 "99.9%"
     * icmp状态  2/1/-1/0   全部/在线/离线/未知
     */
    private String icmpOnlineRate;
    private Integer icmpStatus;
    /**
     * icmp诊断总数
     * 最近icmp时间
     */
    private Integer icmpTotalNum;
    private Date icmpTime;
    /**
     * 离线数
     * 关键帧时延
     */
    private Integer offlineNum;
    private Integer ifmDelay;
    /**
     * 在线数
     * ip地址
     */
    private Integer onlineNum;
    private String ipAddr;
    /**
     * 在线率,格式为百分比字符串,如 "99.9%"
     * 最近持续离线故障次数
     */
    private String onlineRate;
    private Integer olErrEverduring;
    /**
     * 页码
     *
     */
    private Integer pageNum;
    private Date olErrEverduringFirstTime;
    /**
     * 分页大小
     * 累计离线故障次数
     */
    private Integer pageSize;
    private Integer olErrTotal;
    /**
     * 排序属性
     * 累计离线故障率
     */
    private String sortFiled;
    private String olErrTotalRate;
    /**
     * 诊断总数
     * 巡检次数
     */
    private Integer totalNum;
    private Integer olTotal;
    /**
     * sip状态码
     */
    private Integer sipCode;
    /**
     * 信令时延
     */
    private Integer sipDelay;
    /**
     * 在线状态  2/1/-1/0   全部/在线/离线/未知
     */
    private Integer status;
    /**
     * 省厅标签
     */
    private String tagStr;
    /**
     * 省厅标签
     */
    private List<String> tags;
    /**
     * 租户id
     */
    private Integer tenantId;
    /**
     * 视频流时延
     */
    private Integer videoDelay;
    /**
     *
     */
    private Date vqdTime;
}