仓库和仓位接口

This commit is contained in:
18942506660
2023-10-30 15:22:03 +08:00
parent 74d62aaea7
commit ed5dc43e42
10 changed files with 260 additions and 34 deletions

View File

@@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using WMS.Web.Core.Dto.Basics;
using WMS.Web.Core.Dto.SingleData;
namespace WMS.Web.Domain.Infrastructure
{
@@ -17,5 +17,16 @@ namespace WMS.Web.Domain.Infrastructure
/// <param name="CompanyId"></param>
/// <returns></returns>
Task<List<SysStaffResponse>> GetStaffListAsync(int CompanyId);
/// <summary>
/// 根据仓库获取子仓库
/// </summary>
/// <param name="id">仓库id</param>
/// <returns></returns>
Task<List<UcStockResponse>> GetSubUcStockAsync(int id, string name);
/// <summary>
/// 获取仓库
/// </summary>
/// <returns></returns>
Task<List<UcStockResponse>> GetUcStockAsync(string name, int companyId);
}
}