CNAS取数仪器端升级
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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