UserManageEntity.cs 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. using CommunityToolkit.Mvvm.ComponentModel;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace ivf_tl_Entity.Entity.AppSetting
  8. {
  9. public class UserManageEntity : ObservableObject
  10. {
  11. public int num { get; set; }
  12. private string _account;
  13. public string account { get => _account; set => SetProperty(ref _account, value); }
  14. public string email { get; set; }
  15. public long id { get; set; }
  16. public string phone { get; set; }
  17. public int state { get; set; }
  18. private string _username;
  19. public string username { get => _username; set => SetProperty(ref _username, value); }
  20. private string _roleString;
  21. public string RoleString { get => _roleString; set => SetProperty(ref _roleString, value); }
  22. private string _busString;
  23. public string BusString { get => _busString; set => SetProperty(ref _busString, value); }
  24. public List<RoleEntity> roles { get; set; } = new List<RoleEntity>();
  25. public List<Business> permissionDTOS { get; set; } = new List<Business>();
  26. }
  27. }