package com.ycl.platform.domain.vo;
|
|
import annotation.Excel;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.ycl.platform.base.CheckIndex;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Data
|
public class CheckIndexVideoVO extends CheckIndex {
|
/**
|
* 平台在线率
|
*/
|
@Excel(name = "平台在线率")
|
private String platformOnlineText;
|
|
/**
|
* 一机一档合格率
|
*/
|
@Excel(name = "一机一档合格率")
|
private String monitorQualificationText;
|
|
/**
|
* 档案考核比
|
*/
|
@Excel(name = "一机一档注册率")
|
private String monitorRegistrationText;
|
|
/**
|
* 档案考核比
|
*/
|
@Excel(name = "档案考核比")
|
private String archivesRateText;
|
|
/**
|
* 点位在线率
|
*/
|
@Excel(name = "点位在线率")
|
private String siteOnlineText;
|
|
/**
|
* 录象可用率
|
*/
|
@Excel(name = "录象可用率")
|
private String videoAvailableText;
|
|
/**
|
* 部级点位在线率
|
*/
|
@Excel(name = "部级点位在线率")
|
private String ministrySiteOnlineText;
|
|
/**
|
* 部级巡检录像可用率
|
*/
|
@Excel(name = "部级巡检录像可用率")
|
private String ministryVideoAvailableText;
|
|
/**
|
* 重点点位在线率
|
*/
|
@Excel(name = "重点点位在线率")
|
private String keySiteOnlineText;
|
|
/**
|
* 重点点位录象可用率
|
*/
|
@Excel(name = "重点点位录象可用率", width = 25)
|
private String keyVideoAvailableText;
|
|
/**
|
* 重点点位标注正确率
|
*/
|
@Excel(name = "重点点位标注正确率", width = 25)
|
private String keyAnnotationAccuracyText;
|
|
/**
|
* 重点点位按时正确率
|
*/
|
@Excel(name = "重点点位按时正确率", width = 25)
|
private String keyTimingAccuracyText;
|
|
/**
|
* 重点指挥图像在线率
|
*/
|
@Excel(name = "重点指挥图像在线率", width = 25)
|
private String keyCommandImageOnlineText;
|
|
/**
|
* 视频图像资源安全管理
|
*/
|
@Excel(name = "视频图像资源安全管理", width = 25)
|
private String imageResourceSecurityText;
|
|
}
|