| | |
| | | package com.ycl.platform.domain.result.HK; |
| | | |
| | | import com.ycl.platform.domain.result.BaseResult; |
| | | import com.ycl.platform.domain.vo.DataCenter.BigPicUsefulVO; |
| | | import lombok.Data; |
| | | import org.springframework.beans.BeanUtils; |
| | | import org.springframework.data.mongodb.core.index.TextIndexed; |
| | | import org.springframework.data.mongodb.core.mapping.Document; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.math.RoundingMode; |
| | | |
| | | /** |
| | | * 车辆设备抽检指标监测结果,2.3.0版本新增 |
| | | * 车辆设备抽检指标监测结果:车辆(车辆卡口设备抓拍数据大图可用性) |
| | | * |
| | | * @author gonghl |
| | | */ |
| | |
| | | * OSD标注异常数据量 |
| | | */ |
| | | private Integer osdExpCount; |
| | | |
| | | |
| | | } |
| | | |
| | | @Data |
| | |
| | | */ |
| | | private Float importantConPercent; |
| | | } |
| | | |
| | | public static BigPicUsefulVO getPicVO(VehicleDeviceSamplingResult result){ |
| | | BigPicUsefulVO vo = new BigPicUsefulVO(); |
| | | BeanUtils.copyProperties(result,vo); |
| | | vo.setBigPicExpCount(result.getBigUseful().getBigPicExpCount()); |
| | | vo.setBigUsefulPercent(result.getBigUseful().getBigUsefulPercent()); |
| | | vo.setSampleCount(result.getBigUseful().getSampleCount()); |
| | | vo.setOsdExpCount(result.getBigUseful().getOsdExpCount()); |
| | | return vo; |
| | | } |
| | | } |