feat: 完成评论功能

This commit is contained in:
橙子
2023-03-23 23:12:26 +08:00
parent 4babe3e05d
commit 84ec0a7e1c
7 changed files with 162 additions and 18 deletions

View File

@@ -10,7 +10,7 @@ namespace Yi.BBS.Application.Contracts.Forum.Dtos
{
public class CommentGetListInputVo
{
public DateTime? CreateTime { get; set; }
public DateTime? creationTime { get; set; }
public string? Content { get; set; }
//应该选择具体莫个主题查询

View File

@@ -16,7 +16,7 @@ namespace Yi.BBS.Application.Contracts.Forum.Dtos
{
public long Id { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? CreationTime { get; set; }
public string Content { get; set; }