IStationExcute.cs
415 Bytes
using HHECS.Model;
using S7.Net;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HHECS.Common
{
/// <summary>
/// 站台通用处理接口
/// </summary>
public interface IStationExcute
{
EquipmentType EquipmentType { get; set; }
BllResult Excute(List<Equipment> stations,List<Plc> plcs);
}
}