chore: 构建稳定版本
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using Volo.Abp.Application.Dtos;
|
||||
|
||||
namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Article
|
||||
{
|
||||
public class ArticleAllOutputDto : EntityDto<Guid>
|
||||
{
|
||||
|
||||
//批量查询,不给内容,性能考虑
|
||||
//public string Content { get; set; }
|
||||
public string Name { get; set; }
|
||||
public Guid DiscussId { get; set; }
|
||||
public Guid ParentId { get; set; }
|
||||
|
||||
public List<ArticleAllOutputDto>? Children { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user