mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-16 14:36:37 +08:00
37 lines
794 B
C#
37 lines
794 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
using SqlSugar;
|
||
|
||
namespace Yi.Furion.Core.Bbs.Dtos.Comment
|
||
{
|
||
/// <summary>
|
||
/// Comment输入创建对象
|
||
/// </summary>
|
||
public class CommentCreateInputVo
|
||
{
|
||
|
||
/// <summary>
|
||
/// 评论id
|
||
/// </summary>
|
||
public string Content { get; set; }
|
||
|
||
/// <summary>
|
||
/// 主题id
|
||
/// </summary>
|
||
public long DiscussId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 第一层评论id,第一层为0
|
||
/// </summary>
|
||
public long RootId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 被回复的CommentId,第一层为0
|
||
/// </summary>
|
||
public long ParentId { get; set; }
|
||
}
|
||
}
|