fuliqi
2024-09-04 74ae355248c0bccadc80fb37bdb36aee5318fee8
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
package com.ycl.platform.domain.vo;
 
import annotation.Excel;
import com.ycl.platform.base.CheckIndex;
import lombok.Data;
@Data
public class CheckIndexCarVO extends CheckIndex {
    /** 视图库对接稳定性 */
    @Excel(name = "视图库对接稳定性")
    private String viewConnectStabilityText;
 
    /** 点位在线率 */
    @Excel(name = "点位在线率")
    private String siteOnlineText;
 
    /** 联网卡口设备目录一致率 */
    @Excel(name = "联网卡口设备目录一致率",width = 25)
    private String deviceDirectoryConsistentText;
 
    /** 车辆卡口信息采集准确率 */
    @Excel(name = "车辆卡口信息采集准确率",width = 25)
    private String vehicleInformationCollectionAccuracyText;
 
    /** 车辆卡口设备抓拍数据完整性 */
    @Excel(name = "车辆卡口设备抓拍数据完整性",width = 25)
    private String vehicleCaptureIntegrityText;
 
    /** 车辆卡口设备抓拍数据准确性 */
    @Excel(name = "车辆卡口设备抓拍数据准确性",width = 25)
    private String vehicleCaptureAccuracyText;
 
    /** 车辆卡口设备时钟准确性 */
    @Excel(name = "车辆卡口设备时钟准确性",width = 25)
    private String vehicleTimingAccuracyText;
 
    /** 车辆卡口设备抓拍数据上传及时性 */
    @Excel(name = "车辆卡口设备抓拍数据上传及时性",width = 25)
    private String vehicleUploadTimelinessText;
 
    /** 车辆卡口设备url可用性 */
    @Excel(name = "车辆卡口设备url可用性",width = 25)
    private String vehicleUrlAvailabilityText;
 
    /** 车辆卡口设备抓拍数据大图可用性 */
    @Excel(name = "车辆卡口设备抓拍数据大图可用性",width = 25)
    private String vehiclePictureAvailabilityText;
}