24 lines
638 B
C#
24 lines
638 B
C#
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);
|
|
}
|
|
}
|