Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace CnasSynchrousModel
- {
- public class SqlServerFormatConfig
- {
- /// <summary>
- /// SqlServer文件中日期列的格式
- /// </summary>
- public string SqlServerFileDateColumnFormat { get; set; }
-
- /// <summary>
- /// 连接字符串
- /// </summary>
- public string SqlServerConnection { get; set; }
-
- /// <summary>
- /// 读取SqlServer自定义语句
- /// </summary>
- public SqlServerAutoSql AutoSql { get; set; }
-
- /// <summary>
- /// 读取SqlServer后针对数据的特殊操作
- /// </summary>
- public SqlServerSpecialDataTableOpera SpecialDtOpera { get; set; }
- }
-
- public class SqlServerAutoSql
- {
- /// <summary>
- /// 读取SqlServer自定义语句时输入的表名
- /// </summary>
- public string SqlServerViewName { get; set; }
-
- /// <summary>
- /// 读SqlServer时执行的自定义语句
- /// </summary>
- public string SqlServerViewSql { get; set; }
- }
-
- /// <summary>
- /// 对于读取到的dt的特殊操作
- /// </summary>
- public class SqlServerSpecialDataTableOpera
- {
-
- /// <summary>
- /// 方法名
- /// </summary>
- public string Method { get; set; }
-
- /// <summary>
- /// 执行方法需要手动输入的参数
- /// </summary>
- public string Value { get; set; }
- }
- }
|