using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearningOfficer.OA.Common.Dtos.Comment { public class CommentInfoRequest { /// /// 备 注:所属类型(1:工作任务、2:日报、3:周报、4:月报) /// 默认值: /// public int ComType { get; set; } /// /// 备 注:任务/总结 id /// 默认值: /// public long SourceId { get; set; } /// /// 备 注:评论内容 /// 默认值: /// public string ComContent { get; set; } = null!; /// /// 备 注:父级id(子评论),(默认0为一级评论,回复的评论则传对应评论id) /// 默认值: /// public long PId { get; set; } /// /// 备 注:根id(一级为0,一级下面的所有评论均传第一级评论的id) /// 默认值: /// public long RootId { get; set; } } }