namespace WorkCameraExport.Models
{
///
/// 月报表 DTO
///
public class MonthlyReportDto
{
///
/// 时间(YYYY-MM 格式)
///
public string YearMonth { get; set; } = "";
///
/// 部门名称
///
public string DeptName { get; set; } = "";
///
/// 人员名称
///
public string WorkerName { get; set; } = "";
///
/// 工作天数
///
public int WorkDays { get; set; }
}
///
/// 月报表查询条件
///
public class MonthReportQueryDto
{
///
/// 人员名称
///
public string? WorkerName { get; set; }
///
/// 月份(YYYY-MM 格式)
///
public string? YearMonth { get; set; }
}
///
/// 月份图片 DTO - 用于 ZIP 下载
///
public class MonthImageDto
{
///
/// 工作记录 ID
///
public int RecordId { get; set; }
///
/// 记录日期
///
public DateTime? RecordDate { get; set; }
///
/// 部门名称
///
public string DeptName { get; set; } = "";
///
/// 工作内容
///
public string Content { get; set; } = "";
///
/// 施工人员列表
///
public List Workers { get; set; } = new();
///
/// 图片 URL 列表
///
public List ImageUrls { get; set; } = new();
}
}