123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Uninpho.DBOperation.Model;
- namespace ZDHscript
- {
-
-
-
- public class Store
- {
-
-
-
- public static string strLog = string.Empty;
- #region WAR公共数据
-
-
-
- public static List<string> bnyList = new List<string>();
-
-
-
- public static List<string> geoList = new List<string>();
- #endregion
- #region CheckedDataBase公共数据
-
-
-
- public static List<string> newGeofiles = new List<string>();
-
-
-
- public static List<string> newBnyfiles = new List<string>();
- #endregion
- #region RunAlgorithmcs公共数据
-
-
-
-
- public static List<T_file_account> GeofileAccount = new List<T_file_account>();
-
-
-
-
- public static List<T_file_account> BnyfileAccount = new List<T_file_account>();
-
-
-
-
- public static List<T_jihefenxi_account> GeoJHAccount = new List<T_jihefenxi_account>();
- public static List<List<T_jihefenxi_account>> GeoJHAccountlist = new List<List<T_jihefenxi_account>>();
-
-
-
-
- public static List<T_jihefenxi_account> GeoJHReturn = new List<T_jihefenxi_account>();
- #endregion
- }
- }
|