Store.cs 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Uninpho.DBOperation.Model;
  7. namespace ZDHscript
  8. {
  9. /// <summary>
  10. /// 全局变量
  11. /// </summary>
  12. public class Store
  13. {
  14. /// <summary>
  15. /// 程序日志
  16. /// </summary>
  17. public static string strLog = string.Empty;
  18. #region WAR公共数据
  19. /// <summary>
  20. /// 读取的bny
  21. /// </summary>
  22. public static List<string> bnyList = new List<string>();
  23. /// <summary>
  24. /// 读取的geo
  25. /// </summary>
  26. public static List<string> geoList = new List<string>();
  27. #endregion
  28. #region CheckedDataBase公共数据
  29. /// <summary>
  30. /// 筛选后本地新增的geo数据
  31. /// </summary>
  32. public static List<string> newGeofiles = new List<string>();
  33. /// <summary>
  34. /// 筛选后本地新增的bny数据
  35. /// </summary>
  36. public static List<string> newBnyfiles = new List<string>();
  37. #endregion
  38. #region RunAlgorithmcs公共数据
  39. /// <summary>
  40. /// 几何算法需要传入的数据
  41. /// geo t_file_account表
  42. /// </summary>
  43. public static List<T_file_account> GeofileAccount = new List<T_file_account>();
  44. /// <summary>
  45. /// bny t_file_account表
  46. /// 轮轨力算法需要传入的数据
  47. /// </summary>
  48. public static List<T_file_account> BnyfileAccount = new List<T_file_account>();
  49. /// <summary>
  50. /// geo T_jihefenxi_account表
  51. /// 微小算法需要传入的数据
  52. /// </summary>
  53. public static List<T_jihefenxi_account> GeoJHAccount = new List<T_jihefenxi_account>();
  54. public static List<List<T_jihefenxi_account>> GeoJHAccountlist = new List<List<T_jihefenxi_account>>();
  55. /// <summary>
  56. /// geo T_jihefenxi_account表
  57. /// 微小算法执行后,成功返回的数据
  58. /// </summary>
  59. public static List<T_jihefenxi_account> GeoJHReturn = new List<T_jihefenxi_account>();
  60. #endregion
  61. }
  62. }