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.

ISerialPortConfigInfo.cs 397B

4 mesi fa
1234567891011121314151617
  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. }