namespace ZR.Model.Business.Dto
{
///
/// 月份图片查询请求
///
public class MonthImagesQueryDto
{
///
/// 年月(格式:yyyyMM,如 202501)
///
public string YearMonth { get; set; }
}
///
/// 月份图片响应
///
public class MonthImageDto
{
///
/// 图片ID
///
public long ImageId { get; set; }
///
/// 工作记录ID
///
public int WorkrecordId { get; set; }
///
/// 图片URL
///
public string ImageUrl { get; set; }
///
/// 部门名称
///
public string DeptName { get; set; }
///
/// 工作内容
///
public string Content { get; set; }
///
/// 施工人员列表
///
public List Workers { get; set; }
///
/// 拍照时间
///
public DateTime? RecordTime { get; set; }
}
}