package com.ycl.platform.domain.result.UY;
|
|
import com.ycl.platform.domain.result.HK.BaseResult;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* 录像可用性
|
*
|
* @author gonghl
|
*/
|
@Data
|
public class RecordMetaDSumResult{
|
|
/**
|
* 行政区域名称
|
*/
|
private String arealayername;
|
|
/**
|
* 行政区域ID
|
*/
|
private String arealayerno;
|
|
/**
|
* 创建时间,格式为日期时间字符串
|
*/
|
private Date createTime;
|
|
/**
|
* 摄像机ID
|
*/
|
private String deviceId;
|
|
/**
|
* 摄像机名称
|
*/
|
private String deviceName;
|
|
/**
|
* 主键ID
|
*/
|
private String id;
|
|
/**
|
* 缺失时长,数值类型为双精度浮点数
|
*/
|
private Double missDuration;
|
|
/**
|
* 国标平台ID
|
*/
|
private String platId;
|
|
/**
|
* 录像时长,数值类型为双精度浮点数
|
*/
|
private Double recordDuration;
|
|
/**
|
* 录像完整状态,1:完整,0:间歇,-1:异常
|
*/
|
private Integer recordStatus;
|
|
/**
|
* 统计时间,格式为日期字符串
|
*/
|
private Date statTime;
|
|
/**
|
* 租户ID
|
*/
|
private String tenantId;
|
|
}
|