123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Uninpho.DBOperation.Model;
- namespace ZDHscript
- {
- /// <summary>
- /// 全局变量
- /// </summary>
- public class Store
- {
- /// <summary>
- /// 程序日志
- /// </summary>
- public static string strLog = string.Empty;
- #region WAR公共数据
- /// <summary>
- /// 读取的bny
- /// </summary>
- public static List<string> bnyList = new List<string>();
- /// <summary>
- /// 读取的geo
- /// </summary>
- public static List<string> geoList = new List<string>();
- #endregion
- #region CheckedDataBase公共数据
- /// <summary>
- /// 筛选后本地新增的geo数据
- /// </summary>
- public static List<string> newGeofiles = new List<string>();
- /// <summary>
- /// 筛选后本地新增的bny数据
- /// </summary>
- public static List<string> newBnyfiles = new List<string>();
- #endregion
- #region RunAlgorithmcs公共数据
- /// <summary>
- /// 几何算法需要传入的数据
- /// geo t_file_account表
- /// </summary>
- public static List<T_file_account> GeofileAccount = new List<T_file_account>();
- /// <summary>
- /// bny t_file_account表
- /// 轮轨力算法需要传入的数据
- /// </summary>
- public static List<T_file_account> BnyfileAccount = new List<T_file_account>();
- /// <summary>
- /// geo T_jihefenxi_account表
- /// 微小算法需要传入的数据
- /// </summary>
- 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>>();
- /// <summary>
- /// geo T_jihefenxi_account表
- /// 微小算法执行后,成功返回的数据
- /// </summary>
- public static List<T_jihefenxi_account> GeoJHReturn = new List<T_jihefenxi_account>();
- #endregion
- }
- }
|