CNAS取数仪器端升级
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ISerialPortConfigInfo.cs 397B

4 달 전
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. }