package com.ycl.platform.domain.param;
|
|
import lombok.Data;
|
import lombok.experimental.Accessors;
|
|
import java.util.Date;
|
|
/**
|
* 录像可用参数
|
*
|
* @author gonghl
|
* @since 2024/7/2 上午 11:38
|
*/
|
|
@Data
|
@Accessors(chain = true)
|
public class RecordMetaDSumParam {
|
|
/**
|
* 行政区域名称
|
*/
|
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;
|
|
|
}
|