首次提交:添加src文件夹代码
This commit is contained in:
23
Cowain.Bake.Communication/Interface/IPLCService.cs
Normal file
23
Cowain.Bake.Communication/Interface/IPLCService.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using Cowain.Bake.Common.Models;
|
||||
using Cowain.Bake.Model;
|
||||
using Cowain.Bake.Model.Entity;
|
||||
using Cowain.Bake.Model.Models;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Cowain.Bake.Communication.Interface
|
||||
{
|
||||
public interface IPLCService
|
||||
{
|
||||
List<TDeviceConfig> GetDeviceList();
|
||||
List<TDeviceConfig> GetPLCList();
|
||||
List<TDeviceConfig> GetScanList();
|
||||
List<TagEntity> GetTagList(int plcId);
|
||||
int DeleteTag(int tagId);
|
||||
int SelectScript(Variable variable);
|
||||
int DelectScript(Variable variable);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user