RightDicNew.cs 642 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.BsModels
  4. {
  5. public partial class RightDicNew
  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 Title { get; set; }
  19. }
  20. }