using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearningOfficer.OA.Common.Dtos.OA.WorkProcess.Summarize { public class SummarizeWeekRequest { /// /// 备 注:工作年份 /// 默认值: /// public int WorkYear { get; set; } /// /// 备 注:工作月份 /// 默认值: /// public int WorkMonth { get; set; } /// /// 备 注:工作周报 /// 默认值: /// public int WorkWeek { get; set; } /// /// 备 注:工作总结日期-开始 /// 默认值: /// public DateTime BeginDate { get; set; } /// /// 备 注:工作总结日期-结束 /// 默认值: /// public DateTime EndDate { get; set; } /// /// 备 注:问题反馈 /// 默认值: /// public string QuestContent { get; set; } = null!; /// /// 备 注:下次工作内容 /// 默认值: /// public string NextTimeContent { get; set; } = null!; /// /// 备 注:明日计划-文件id集合,多个英文逗号隔开 /// public string? FileId { get; set; } } }