平安校园
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

RelationRoleResource.cs 388 B

4 months ago
12345678910111213141516171819202122232425262728
  1. 
  2. //
  3. namespace SafeCampus.System;
  4. /// <summary>
  5. /// SYS_ROLE_HAS_RESOURCE
  6. /// 角色有哪些资源扩展
  7. /// </summary>
  8. public class RelationRoleResource
  9. {
  10. /// <summary>
  11. /// 菜单ID
  12. /// </summary>
  13. public long MenuId { get; set; }
  14. /// <summary>
  15. /// 按钮信息
  16. /// </summary>
  17. public List<long> ButtonInfo { get; set; } = new List<long>();
  18. }