123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.BsModels
- {
- public partial class RightDicNew
- {
- 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; }
- public string Title { get; set; }
- }
- }
|