CNAS取数仪器端升级
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
798B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CnasSynchrousModel
  7. {
  8. public class SqlServerOpenParams:OpenSourceParams
  9. {
  10. /// <summary>
  11. /// 数据库服务器IP
  12. /// </summary>
  13. public string StrHost { get; set; }
  14. /// <summary>
  15. /// 数据库实例名
  16. /// </summary>
  17. public string StrServer { get; set; }
  18. /// <summary>
  19. /// 端口
  20. /// </summary>
  21. public string StrPort { get; set; }
  22. /// <summary>
  23. /// 自定义查询语句
  24. /// </summary>
  25. public SqlServerAutoSql autoSql { get; set; }
  26. //直接使用连接字符串
  27. public string StrConnecttion { get; set; }
  28. }
  29. }