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.

20 lines
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. }