package com.ycl.platform.domain.vo.DataCenter;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* 档案考核比数据
|
*
|
* @author:xp
|
* @date:2024/7/31 9:31
|
*/
|
@Data
|
public class VideoUseableVO {
|
|
private String id;
|
|
/** 行政区域名称 */
|
private String arealayername;
|
|
/** 行政区域ID */
|
private String arealayerno;
|
|
/** 创建时间 */
|
private Date createTime;
|
|
/** 摄像机ID */
|
private String deviceId;
|
|
/** 摄像机名称 */
|
private String deviceName;
|
|
/** 缺失时长 */
|
private Double missDuration;
|
|
/** 国标平台ID */
|
private String platId;
|
|
/** 录像时长 */
|
private Double recordDuration;
|
|
/** 录像完整状态 1:完整 0:间歇 -1:异常 */
|
private Integer recordStatus;
|
|
/** 统计时间 */
|
private Date statTime;
|
|
/** 租户ID */
|
private String tenantId;
|
}
|