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 EvaluationSumRequest { /// /// 总结报告id /// public long Id { get; set; } /// /// 评论内容 /// public string Content { get; set; } } }