RightDic.cs 698 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.Models.Main1
  4. {
  5. public partial class RightDic
  6. {
  7. public string Id { get; set; }
  8. public string Icon { get; set; }
  9. public string Name { get; set; }
  10. public string Url { get; set; }
  11. public int RightLevel { get; set; }
  12. public int Sort { get; set; }
  13. public ulong MainMenu { get; set; }
  14. public ulong MainStat { get; set; }
  15. public ulong MainDataList { get; set; }
  16. public string OtherRight { get; set; }
  17. // public string Path { get; set; }
  18. // public string Component { get; set; }
  19. // public string Title { get; set; }
  20. }
  21. }