yanjinhui
2025-02-26 f3c2bc390da81d90b444ed48061cdf8b285e0567
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core;
using WIDESEAWCS_Core.BaseServices;
using WIDESEAWCS_Model.Models.SerialPort;
 
namespace WIDESEA_ISerialPortService
{
    public interface ISerialPortService:IService<Dt_TorqueOp>
    {
        WebResponseContent AddSerialPort(Dt_TorqueOp TorqueOp);
 
      
 
        //WebResponseContent StartSerialPortCom();
 
        void StartSerialPortCom();
 
        void StopSerialPortCom();
 
        //WebResponseContent Getinfo();
        List<string> GetSerialPortCom();
    }
}