CNAS取数仪器端升级
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.

67 linhas
1.8KB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CnasSynchrousModel
  6. {
  7. public class FoxProFormatConfig
  8. {
  9. /// <summary>
  10. /// FoxPro文件中日期列的格式
  11. /// </summary>
  12. public string FoxProFileDateColumnFormat { get; set; }
  13. /// <summary>
  14. /// FoxPro文件命名格式(如果以文件夹方式读取)
  15. /// </summary>
  16. public string FoxProFileNameFormat { get; set; }
  17. /// <summary>
  18. /// 读取FoxPro文件的方式,0表示以文件方式读取,1表示以文件夹方式读取(实际上读取文件以当前系统时间命名的文件)
  19. /// </summary>
  20. public string ReadFoxProFileMode { get; set; }
  21. /// <summary>
  22. /// 读取FoxPro自定义语句
  23. /// </summary>
  24. public FoxProAutoSql AutoSql { get; set; }
  25. /// <summary>
  26. /// 读取FoxPro后针对数据的特殊操作
  27. /// </summary>
  28. public FoxProSpecialDataTableOpera SpecialDtOpera { get; set; }
  29. }
  30. public class FoxProAutoSql
  31. {
  32. /// <summary>
  33. /// 读取FoxPro自定义语句时输入的表名
  34. /// </summary>
  35. public string FoxProViewName { get; set; }
  36. /// <summary>
  37. /// 读FoxPro时执行的自定义语句
  38. /// </summary>
  39. public string FoxProViewSql { get; set; }
  40. }
  41. /// <summary>
  42. /// 对于读取到的dt的特殊操作
  43. /// </summary>
  44. public class FoxProSpecialDataTableOpera
  45. {
  46. /// <summary>
  47. /// 方法名
  48. /// </summary>
  49. public string Method { get; set; }
  50. /// <summary>
  51. /// 执行方法需要手动输入的参数
  52. /// </summary>
  53. public string Value { get; set; }
  54. }
  55. }