1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.Models.Bs
- {
- 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; }
- public string Path { get; set; }
- }
- }
|