feat: 新增角色查看主题权限

This commit is contained in:
橙子
2025-01-19 18:40:42 +08:00
parent 7994e66283
commit 9960c63f59
14 changed files with 182 additions and 290 deletions

View File

@@ -35,6 +35,11 @@ namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss
/// <summary>
/// 标签
/// </summary>
public List<Guid>? DiscussLables { get; set; }
public List<Guid>? DiscussLableIds { get; set; }
/// <summary>
/// 角色
/// </summary>
public List<string>? PermissionRoleCodes { get; set; } = new List<string>();
}
}