using NXWMS.Client.Model.AppModels.Condition.Base; using NXWMS.Client.Model.AppModels.Result.Base; using NXWMS.Client.Model.CoreModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace NXWMS.Client.Interface.Base { /// /// 仓库服务 /// public interface IWarehouseService { OperateResultInfo> GetList(WarehouseSearchCondition info); OperateResultInfo SyncERP(); } }