RoleView.cs 584 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting
  5. {
  6. public class RoleView
  7. {
  8. public Guid? RoleID { get; set; }
  9. public string RoleName { get; set; }
  10. public string Description { get; set; }
  11. public bool IsSystemRole { get; set; }
  12. public string IsSystemRoleStr
  13. {
  14. get
  15. {
  16. return IsSystemRole == true ? "是" : "否";
  17. }
  18. }
  19. public Nullable<System.DateTime> CreateTime { get; set; }
  20. }
  21. }