perf:优化批量dto

This commit is contained in:
陈淳
2023-03-24 17:13:25 +08:00
parent 4babe3e05d
commit c98eefe3ec
2 changed files with 7 additions and 2 deletions

View File

@@ -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; }
/// <summary>

View File

@@ -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; }