using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ZR.Model.MES.wms; namespace ZR.Service.mes.wms_u8.IService { /// /// 用友U8和WMS 交互接口 /// public interface IERP_WMS_interactive { /// /// 入库 /// /// public ERP_WMS_interactiveModelResult Inbounded(string urlBase, List eRP_WMS_InteractiveModels); /// /// 出库 /// /// public ERP_WMS_interactiveModelResult Outbounded(string urlBase, List eRP_WMS_InteractiveModels); } }