using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CnasSynchrousModel { /// /// 同步映射字段 /// 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; } } }