namespace SafeCampus.Application.Services.Business.PassengerFlowService.Dto;
public class PassengerFlowDto
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// 分片Json信息
///
public string ExtJson { get; set; }
///
/// 查询时间
///
public DateTime QueryTime { get; set; }
///
/// 开始时间
///
public DateTime StartTime { get; set; }
///
/// 结束时间
///
public DateTime EndTime { get; set; }
///
/// 摄像头id列表
///
public string[] CameraIds { get; set; }
///
/// 摄像头名称列表
///
public string[] CameraNames { get; set; }
///
/// 分片类型
///
public bool Split { get; set; }
///
/// 总数
///
public int Total { get; set; }
}