using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core; using WIDESEA_External.Model; namespace WIDESEA_External.MESService { /// /// 调用MES接口 /// public interface IInvokeMESService : IDependency { /// /// MES配送出发通知 /// /// /// string MESDispatchUp(MESDispatchModel mESDispatchModel); /// /// MES配送到达通知 /// /// /// string MESDelivery(MESDeliveryModel mESDeliveryModel); /// /// MES退料空托接收通知 /// /// /// string MESRecepNotice(MESRecepNoticeModel mESRecepNoticeModel); /// /// MES小车到达通知 /// /// /// string MESAvgArriveNotice(MESAvgArriveNoticeModel mESAvgArriveNoticeModel); /// /// MES产量回传 /// /// 成品箱码 /// string MESBoxCodeNotice(string boxCode); } }