仓库接口
This commit is contained in:
@@ -22,11 +22,11 @@ namespace WMS.Web.Domain.Infrastructure
|
||||
/// </summary>
|
||||
/// <param name="id">仓库id</param>
|
||||
/// <returns></returns>
|
||||
Task<List<UcStockResponse>> GetSubUcStockAsync(int id, string name);
|
||||
Task<List<UcStockResponse>> GetSubUcStockAsync(int stockId);
|
||||
/// <summary>
|
||||
/// 获取仓库
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
Task<List<UcStockResponse>> GetUcStockAsync(string name, int companyId);
|
||||
Task<List<UcStockResponse>> GetUcStockAsync(string systemCode,string name, int companyId);
|
||||
}
|
||||
}
|
||||
|
||||
17
src/WMS.Web.Domain/Values/ManagementSystemCode.cs
Normal file
17
src/WMS.Web.Domain/Values/ManagementSystemCode.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WMS.Web.Domain.Values
|
||||
{
|
||||
/// <summary>
|
||||
/// 管理系统的编码:这里的枚举值跟单点的(仓库管理系统表)数据同步编码就行了
|
||||
/// </summary>
|
||||
public enum ManagementSystemCode
|
||||
{
|
||||
/// <summary>
|
||||
/// WMS系统
|
||||
/// </summary>
|
||||
GLXT0004=1,
|
||||
}
|
||||
}
|
||||
@@ -95,7 +95,7 @@ namespace WMS.Web.Domain.Values.Single
|
||||
GetWareouseByCustomerAndCompany = 21,
|
||||
|
||||
/// <summary>
|
||||
/// 仓位-根据仓库和名称
|
||||
/// 仓位-根据仓库
|
||||
/// </summary>
|
||||
GetChildWarehouseByPid = 22,
|
||||
/// <summary>
|
||||
@@ -182,5 +182,10 @@ namespace WMS.Web.Domain.Values.Single
|
||||
/// 获取全部员工:根据公司和组织
|
||||
/// </summary>
|
||||
GetStaffAllByOrgAndCompany = 42,
|
||||
|
||||
/// <summary>
|
||||
/// 获取仓库::根据管理系统code和仓库名称和公司ID,备注系统code和公司ID是必填
|
||||
/// </summary>
|
||||
GetWmsWarehouseBySystemCodeAndNameAndCompany=43,
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user