using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core; using WIDESEA_Core.Helper; using WIDESEA_External.Model; using WIDESEA_Model.Models; namespace WIDESEA_External.ERPService { /// /// 调用ERP接口 /// public interface IInvokeERPService : IDependency { /// /// 博思通上传信息 /// /// string BSTPurchaseUp(BSTPurchaseUpModel bSTPurchaseUpModel); /// /// 博思通库存查询 /// /// string BSTStockAsync(string barCode); /// /// ERP上传采购信息 /// /// string ERPPurchaseUp(ERPPurchaseUpModel eRPPurchaseUpModel); /// /// ERP成品销售出库上传信息 /// /// string ERPProOutUp(ERPProOutUpModel eRPProOutUpModel); /// /// ERP上传成品入库信息 /// /// string ERPProInUp(ERPProInUpModel eRPProInUpModel); /// /// ERP上传半-成品入库信息 /// /// string ERPSemiProInUp(ERPProInUpModel eRPProInUpModel); } }