using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CnasSynchrousModel { [Serializable] public class SystemFormatConfig { /// /// 来源数据库显示数据时,显示最近多少天的数据,比如-40,表示显示当前系统时间前推40天以内的数据 /// public string ShowDelayDays { get; set; } /// /// 获取表信息的方式,1表示手动输入表信息,0表示自动获取表信息。 /// public string TableInfoMode { get; set; } /// /// 自动执行同步时,只记录最近多少天的日志数据,超出时间的日志将会被删除 /// public string ShowLogDays { get; set; } /// /// 目标数据库类型 /// public string TargetDBType { get; set; } /// /// 启动通用模式 /// public string StartGeneralVersion { get; set; } /// /// 启动WebAPI模式写入数据 /// public string StartWebApi { get; set; } /// /// WebApi的Url /// public string WebApiUrl { get; set; } /// /// 仪器名称 /// public string YQName { get; set; } } }