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