RightDic.cs 562 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.Models.KxsMain
  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. }
  18. }