using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CnasSynchrousModel
{
public class FoxProFormatConfig
{
///
/// FoxPro文件中日期列的格式
///
public string FoxProFileDateColumnFormat { get; set; }
///
/// FoxPro文件命名格式(如果以文件夹方式读取)
///
public string FoxProFileNameFormat { get; set; }
///
/// 读取FoxPro文件的方式,0表示以文件方式读取,1表示以文件夹方式读取(实际上读取文件以当前系统时间命名的文件)
///
public string ReadFoxProFileMode { get; set; }
///
/// 读取FoxPro自定义语句
///
public FoxProAutoSql AutoSql { get; set; }
///
/// 读取FoxPro后针对数据的特殊操作
///
public FoxProSpecialDataTableOpera SpecialDtOpera { get; set; }
}
public class FoxProAutoSql
{
///
/// 读取FoxPro自定义语句时输入的表名
///
public string FoxProViewName { get; set; }
///
/// 读FoxPro时执行的自定义语句
///
public string FoxProViewSql { get; set; }
}
///
/// 对于读取到的dt的特殊操作
///
public class FoxProSpecialDataTableOpera
{
///
/// 方法名
///
public string Method { get; set; }
///
/// 执行方法需要手动输入的参数
///
public string Value { get; set; }
}
}