diff --git a/Yi.Framework.Net6/src/project/bbs/Yi.BBS.Application.Contracts/Forum/Dtos/Comment/CommentGetListOutputDto.cs b/Yi.Framework.Net6/src/project/bbs/Yi.BBS.Application.Contracts/Forum/Dtos/Comment/CommentGetListOutputDto.cs index ae21a61d..f43c57ed 100644 --- a/Yi.Framework.Net6/src/project/bbs/Yi.BBS.Application.Contracts/Forum/Dtos/Comment/CommentGetListOutputDto.cs +++ b/Yi.Framework.Net6/src/project/bbs/Yi.BBS.Application.Contracts/Forum/Dtos/Comment/CommentGetListOutputDto.cs @@ -17,7 +17,10 @@ namespace Yi.BBS.Application.Contracts.Forum.Dtos public long Id { get; set; } public DateTime? CreateTime { get; set; } - public string Content { get; set; } + + + //批量查询,不给内容,性能考虑 + //public string Content { get; set; } /// diff --git a/Yi.Framework.Net6/src/project/bbs/Yi.BBS.Application.Contracts/Forum/Dtos/Discuss/DiscussGetListOutputDto.cs b/Yi.Framework.Net6/src/project/bbs/Yi.BBS.Application.Contracts/Forum/Dtos/Discuss/DiscussGetListOutputDto.cs index bb5405bb..13acca07 100644 --- a/Yi.Framework.Net6/src/project/bbs/Yi.BBS.Application.Contracts/Forum/Dtos/Discuss/DiscussGetListOutputDto.cs +++ b/Yi.Framework.Net6/src/project/bbs/Yi.BBS.Application.Contracts/Forum/Dtos/Discuss/DiscussGetListOutputDto.cs @@ -19,7 +19,9 @@ namespace Yi.BBS.Application.Contracts.Forum.Dtos.Discuss public int AgreeNum { get; set; } public int SeeNum { get; set; } - public string Content { get; set; } + + //批量查询,不给内容,性能考虑 + //public string Content { get; set; } public string? Color { get; set; } public long PlateId { get; set; }