终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

41 lines
1.3 KiB

  1. using BPASmartClient.CustomResource.Pages.Enums;
  2. using BPASmartClient.Model;
  3. using BPA.Helper;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace BPASmartClient.CustomResource.Pages.Model
  10. {
  11. public class UserInfo : NotifyBase
  12. {
  13. public String LastLogInTime { get; set; } = "无";
  14. public List<UserTreeViewModel> userTreeViewModels { get; set; }
  15. public string Id { get { return _id; } set { _id = value; OnPropertyChanged(); } }
  16. private string _id;
  17. public Permission permission { get { return _perimission; } set { _perimission = value; OnPropertyChanged(); } }
  18. private Permission _perimission;
  19. public string UserName { get { return _userName; } set { _userName = value; OnPropertyChanged(); } }
  20. private string _userName;
  21. public string Password { get { return _password; } set { _password = value; OnPropertyChanged(); } }
  22. private string _password;
  23. public string CardId { get; set; } = string.Empty;
  24. public List<RawMaterialModel> locaRawMaterials { get; set; } = new List<RawMaterialModel>();
  25. public List<RawMaterialModel> devRawMaterials { get; set; } = new List<RawMaterialModel>();
  26. }
  27. }