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.

18 lignes
397B

  1. using CnasSynchrousModel;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace CNAS_SerialPort
  7. {
  8. public interface ISerialPortConfigInfo
  9. {
  10. SerialPortConfigInfo GetSerialPortConfigInfo();
  11. int InsertSerialPortConfigInfo(SerialPortConfigInfo serial);
  12. int UpdateSerialPortConfigInfo(SerialPortConfigInfo serial);
  13. }
  14. }