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

20 行
447B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CNAS_DBSync
  6. {
  7. public class InstrumentDataOperation
  8. {
  9. //需提前制定数据源类型
  10. protected DataSourceType dataSourceType = DataSourceType.Excel;
  11. //获取数据
  12. public InstrumentDataOperation(DataSourceType dataSourceType)
  13. {
  14. this.dataSourceType = dataSourceType;
  15. }
  16. }
  17. }