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.

33 lines
852 B

  1. using HKLib.Dto;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace HKCardManager
  8. {
  9. public class Global
  10. {
  11. /// <summary>
  12. /// 用户信息列表
  13. /// </summary>
  14. public static List<UserInfoModel> UserListDtos { get; set; } = new List<UserInfoModel>();
  15. /// <summary>
  16. /// 分页数据表
  17. /// </summary>
  18. public static List<UserInfoModel> PagUserListDtos { get; set; } = new List<UserInfoModel>();
  19. /// <summary>
  20. /// 机构信息
  21. /// </summary>
  22. public static List<string> OrgList { get; set; } = new List<string>();
  23. /// <summary>
  24. /// 机构信息
  25. /// </summary>
  26. public static List<OrgDto> OrgTables { get; set; } = new List<OrgDto>();
  27. }
  28. }