|
12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace CnasSynchrousModel
- {
- /// <summary>
- /// 同步映射字段
- /// </summary>
- public class SyncParamasInfo
- {
- public string SourceTable { get; set; }
-
- public string SourceField { get; set; }
-
- public string TargetTable { get; set; }
-
- public string TargetField { get; set; }
-
- public bool IfPrimaryKey { get; set; }
-
- public bool IfDateField { get; set; }
- }
- }
|