25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
683 B

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