liulijun
2026-03-12 fe256a7afaa132910875d3dc73783d9ab2d7ace5
ÏîÄ¿´úÂë/WMS/WMSServices/WIDESEA_External/IMESService/IInvokeMESService.cs
@@ -13,5 +13,35 @@
    /// </summary>
    public interface IInvokeMESService : IDependency
    {
        /// <summary>
        /// MES配送出发通知
        /// </summary>
        /// <param name="mESDispatchModel"></param>
        /// <returns></returns>
        string MESDispatchUp(MESDispatchModel mESDispatchModel);
        /// <summary>
        /// MES配送到达通知
        /// </summary>
        /// <param name="mESDeliveryModel"></param>
        /// <returns></returns>
        string MESDelivery(MESDeliveryModel mESDeliveryModel);
        /// <summary>
        /// MES退料空托接收通知
        /// </summary>
        /// <param name="mESRecepNoticeModel"></param>
        /// <returns></returns>
        string MESRecepNotice(MESRecepNoticeModel mESRecepNoticeModel);
        /// <summary>
        /// MES小车到达通知
        /// </summary>
        /// <param name="mESAvgArriveNoticeModel"></param>
        /// <returns></returns>
        string MESAvgArriveNotice(MESAvgArriveNoticeModel mESAvgArriveNoticeModel);
        /// <summary>
        /// MES产量回传
        /// </summary>
        /// <param name="boxCode">成品箱码</param>
        /// <returns></returns>
        string MESBoxCodeNotice(string boxCode);
    }
}