CNAS取数仪器端升级
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

22 行
630B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CnasSynchrousModel
  6. {
  7. [Serializable]
  8. public class SystemFormatConfig
  9. {
  10. /// <summary>
  11. /// 来源数据库显示数据时,显示最近多少天的数据,比如-40,表示显示当前系统时间前推40天以内的数据
  12. /// </summary>
  13. public string ShowDelayDays { get; set; }
  14. /// <summary>
  15. /// 获取表信息的方式,1表示手动输入表信息,0表示自动获取表信息。
  16. /// </summary>
  17. public string TableInfoMode { get; set; }
  18. }
  19. }