| | |
| | | |
| | | import annotation.Excel; |
| | | import com.alibaba.excel.annotation.ExcelIgnore; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.ycl.platform.base.CheckIndex; |
| | | |
| | | import java.math.BigDecimal; |
| | |
| | | * @author ruoyi |
| | | * @date 2024-04-29 |
| | | */ |
| | | |
| | | @TableName("check_index_car") |
| | | public class CheckIndexCar extends CheckIndex |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | |
| | | /** 视图库对接稳定性 */ |
| | | @Excel(name = "视图库对接稳定性") |
| | | @TableField("view_connect_stability") |
| | | private BigDecimal viewConnectStability; |
| | | |
| | | /** 点位在线率 */ |
| | | @Excel(name = "点位在线率") |
| | | @TableField("site_online") |
| | | private BigDecimal siteOnline; |
| | | |
| | | /** 联网卡口设备目录一致率 */ |
| | | @Excel(name = "联网卡口设备目录一致率",width = 25) |
| | | @TableField("device_directory_consistent") |
| | | private BigDecimal deviceDirectoryConsistent; |
| | | |
| | | /** 车辆卡口信息采集准确率 */ |
| | | @Excel(name = "车辆卡口信息采集准确率",width = 25) |
| | | @TableField("vehicle_information_collection_accuracy") |
| | | private BigDecimal vehicleInformationCollectionAccuracy; |
| | | |
| | | /** 车辆卡口设备抓拍数据完整性 */ |
| | | @Excel(name = "车辆卡口设备抓拍数据完整性",width = 25) |
| | | @TableField("vehicle_capture_integrity") |
| | | private BigDecimal vehicleCaptureIntegrity; |
| | | |
| | | /** 车辆卡口设备抓拍数据准确性 */ |
| | | @Excel(name = "车辆卡口设备抓拍数据准确性",width = 25) |
| | | @TableField("vehicle_capture_accuracy") |
| | | private BigDecimal vehicleCaptureAccuracy; |
| | | |
| | | /** 车辆卡口设备时钟准确性 */ |
| | | @Excel(name = "车辆卡口设备时钟准确性",width = 25) |
| | | @TableField("vehicle_timing_accuracy") |
| | | private BigDecimal vehicleTimingAccuracy; |
| | | |
| | | /** 车辆卡口设备抓拍数据上传及时性 */ |
| | | @Excel(name = "车辆卡口设备抓拍数据上传及时性",width = 25) |
| | | @TableField("vehicle_upload_timeliness") |
| | | private BigDecimal vehicleUploadTimeliness; |
| | | |
| | | /** 车辆卡口设备url可用性 */ |
| | | @Excel(name = "车辆卡口设备url可用性",width = 25) |
| | | @TableField("vehicle_url_availability") |
| | | private BigDecimal vehicleUrlAvailability; |
| | | |
| | | /** 车辆卡口设备抓拍数据大图可用性 */ |
| | | @Excel(name = "车辆卡口设备抓拍数据大图可用性",width = 25) |
| | | @TableField("vehicle_picture_availability") |
| | | private BigDecimal vehiclePictureAvailability; |
| | | |
| | | @ExcelIgnore |
| | | @TableField(exist = false) |
| | | private List<String> quarter; |
| | | |
| | | public List<String> getQuarter() { |