Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/Comment/CommentInfoRequest.cs

43 lines
1.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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
{
/// <summary>
/// 备 注:所属类型1工作任务、2日报、3周报、4月报
/// 默认值:
///</summary>
public int ComType { get; set; }
/// <summary>
/// 备 注:任务/总结 id
/// 默认值:
///</summary>
public long SourceId { get; set; }
/// <summary>
/// 备 注:评论内容
/// 默认值:
///</summary>
public string ComContent { get; set; } = null!;
/// <summary>
/// 备 注:父级id子评论默认0为一级评论回复的评论则传对应评论id
/// 默认值:
///</summary>
public long PId { get; set; }
/// <summary>
/// 备 注:根id一级为0一级下面的所有评论均传第一级评论的id
/// 默认值:
///</summary>
public long RootId { get; set; }
}
}