增加获取erp仓库接口

This commit is contained in:
18942506660
2023-11-02 10:08:58 +08:00
parent e8645ed73f
commit 7fcc48fd9b
6 changed files with 104 additions and 21 deletions

View File

@@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using WMS.Web.Core.Dto.Erp;
using WMS.Web.Core.Dto.Erp.Org;
using WMS.Web.Core.Dto.Erp.Purchase;
using WMS.Web.Core.Internal.Results;
@@ -21,5 +22,11 @@ namespace WMS.Web.Domain.IService.Public
/// </summary>
/// <returns></returns>
Task<ResultList<ErpOrgDto>> BillQueryForOrg();
/// <summary>
/// 获取仓库信息
/// </summary>
/// <returns></returns>
Task<ResultList<ErpStockDto>> BillQueryForStock();
}
}