SysRole.cs 577 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using Newtonsoft.Json;
  4. namespace YZXYH.Repository.Models
  5. {
  6. [Serializable]
  7. public partial class SysRole
  8. {
  9. public string Id { get; set; }
  10. public string RoleName { get; set; }
  11. public string RoleMenu { get; set; }
  12. public string Description { get; set; }
  13. public string IsLocked { get; set; }
  14. public Nullable<System.DateTime> TimeCreated { get; set; }
  15. public Nullable<System.DateTime> TimeLastMod { get; set; }
  16. public string UserIdLastMod { get; set; }
  17. }
  18. }