|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace CnasSynchrousModel
- {
- public class PostgreSqlFormatConfig
- {
- /// <summary>
- /// PostgreSqlļеĸʽ
- /// </summary>
- public string PostgreSqlFileDateColumnFormat { get; set; }
-
- /// <summary>
- /// ȡPostgreSqlԶ
- /// </summary>
- public PostgreSqlAutoSql AutoSql { get; set; }
-
- /// <summary>
- /// ȡPostgreSqlݵ
- /// </summary>
- public PostgreSqlSpecialDataTableOpera SpecialDtOpera { get; set; }
- }
-
-
- public class PostgreSqlAutoSql
- {
- /// <summary>
- /// ȡPostgreSqlԶʱı
- /// </summary>
- public string PostgreSqlViewName { get; set; }
-
- /// <summary>
- /// PostgreSqlʱִеԶ
- /// </summary>
- public string PostgreSqlViewSql { get; set; }
- }
-
- /// <summary>
- /// ڶȡdt
- /// </summary>
- public class PostgreSqlSpecialDataTableOpera
- {
-
- /// <summary>
- ///
- /// </summary>
- public string Method { get; set; }
-
- /// <summary>
- /// ִзҪֶIJ
- /// </summary>
- public string Value { get; set; }
- }
- }
|