namespace WorkCameraExport.Models
{
///
/// 统计信息 DTO - 主页显示
///
public class StatisticsDto
{
///
/// 本月工作记录数
///
public int MonthRecordCount { get; set; }
///
/// 本月图片数
///
public int MonthImageCount { get; set; }
///
/// 本月施工人员数
///
public int MonthWorkerCount { get; set; }
///
/// 今日新增记录数
///
public int TodayRecordCount { get; set; }
///
/// 数据总量
///
public int TotalRecordCount { get; set; }
///
/// 待迁移数据数
///
public int PendingMigrationCount { get; set; }
}
}