12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.Models.KxsMainModels
- {
- public partial class RightDic
- {
- public string Id { get; set; }
- public string Icon { get; set; }
- public string Name { get; set; }
- public string Url { get; set; }
- public int RightLevel { get; set; }
- public int Sort { get; set; }
- public ulong MainMenu { get; set; }
- public ulong MainStat { get; set; }
- public ulong MainDataList { get; set; }
- public string OtherRight { get; set; }
- }
- }
|