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公共数据
///
/// 读取的bny
///
public static List bnyList = new List();
///
/// 读取的geo
///
public static List geoList = new List();
#endregion
#region CheckedDataBase公共数据
///
/// 筛选后本地新增的geo数据
///
public static List newGeofiles = new List();
///
/// 筛选后本地新增的bny数据
///
public static List newBnyfiles = new List();
#endregion
#region RunAlgorithmcs公共数据
///
/// 几何算法需要传入的数据
/// geo t_file_account表
///
public static List GeofileAccount = new List();
///
/// bny t_file_account表
/// 轮轨力算法需要传入的数据
///
public static List BnyfileAccount = new List();
///
/// geo T_jihefenxi_account表
/// 微小算法需要传入的数据
///
public static List GeoJHAccount = new List();
public static List> GeoJHAccountlist = new List>();
///
/// geo T_jihefenxi_account表
/// 微小算法执行后,成功返回的数据
///
public static List GeoJHReturn = new List();
#endregion
}
}