| 12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using Newtonsoft.Json;
- namespace YZXYH.Repository.Models
- {
- [Serializable]
- public partial class SysRole
- {
- public string Id { get; set; }
- public string RoleName { get; set; }
- public string RoleMenu { get; set; }
- public string Description { get; set; }
- public string IsLocked { get; set; }
- public Nullable<System.DateTime> TimeCreated { get; set; }
- public Nullable<System.DateTime> TimeLastMod { get; set; }
- public string UserIdLastMod { get; set; }
- }
- }
|