仓库和仓位接口
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user