MenuDto.cs 708 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using Volo.Abp.Application.Dtos;
  3. namespace BaseService.Systems.MenuManagement.Dto
  4. {
  5. public class MenuDto : EntityDto<Guid>
  6. {
  7. public Guid? Pid { get; set; }
  8. /// <summary>
  9. /// 菜单类型
  10. /// </summary>
  11. public int CategoryId { get; set; }
  12. public string Label { get; set; }
  13. public string Name { get; set; }
  14. public int Sort { get; set; }
  15. public string Path { get; set; }
  16. public string Component { get; set; }
  17. public string Route { get; set; }
  18. public string Permission { get; set; }
  19. public string Icon { get; set; }
  20. public string ParentLabel { get; set; }
  21. }
  22. }