Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace CnasSynchrousModel
- {
- public class FoxProFormatConfig
- {
- /// <summary>
- /// FoxPro文件中日期列的格式
- /// </summary>
- public string FoxProFileDateColumnFormat { get; set; }
-
- /// <summary>
- /// FoxPro文件命名格式(如果以文件夹方式读取)
- /// </summary>
- public string FoxProFileNameFormat { get; set; }
-
- /// <summary>
- /// 读取FoxPro文件的方式,0表示以文件方式读取,1表示以文件夹方式读取(实际上读取文件以当前系统时间命名的文件)
- /// </summary>
- public string ReadFoxProFileMode { get; set; }
-
- /// <summary>
- /// 读取FoxPro自定义语句
- /// </summary>
- public FoxProAutoSql AutoSql { get; set; }
-
- /// <summary>
- /// 读取FoxPro后针对数据的特殊操作
- /// </summary>
- public FoxProSpecialDataTableOpera SpecialDtOpera { get; set; }
- }
-
- public class FoxProAutoSql
- {
- /// <summary>
- /// 读取FoxPro自定义语句时输入的表名
- /// </summary>
- public string FoxProViewName { get; set; }
-
-
- /// <summary>
- /// 读FoxPro时执行的自定义语句
- /// </summary>
- public string FoxProViewSql { get; set; }
- }
-
- /// <summary>
- /// 对于读取到的dt的特殊操作
- /// </summary>
- public class FoxProSpecialDataTableOpera
- {
-
- /// <summary>
- /// 方法名
- /// </summary>
- public string Method { get; set; }
-
- /// <summary>
- /// 执行方法需要手动输入的参数
- /// </summary>
- public string Value { get; set; }
- }
- }
|