出库单
This commit is contained in:
13
src/WMS.Web.Domain/IService/IOutStockService.cs
Normal file
13
src/WMS.Web.Domain/IService/IOutStockService.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WMS.Web.Domain.IService
|
||||
{
|
||||
/// <summary>
|
||||
/// 出库服务
|
||||
/// </summary>
|
||||
public interface IOutStockService
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -2,6 +2,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WMS.Web.Core.Dto.OutStock;
|
||||
using WMS.Web.Domain.Entitys;
|
||||
|
||||
namespace WMS.Web.Domain.Infrastructure
|
||||
@@ -10,5 +11,7 @@ namespace WMS.Web.Domain.Infrastructure
|
||||
{
|
||||
// 新增
|
||||
Task<OutStock> Add(OutStock entity, bool isTransaction = true);
|
||||
// 获取列表
|
||||
Task<(List<OutStockQueryInfoResponse> list, int total)> GetListAsync(OutStockQueryRequest dto);
|
||||
}
|
||||
}
|
||||
|
||||
14
src/WMS.Web.Domain/Services/OutStockService.cs
Normal file
14
src/WMS.Web.Domain/Services/OutStockService.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using WMS.Web.Domain.IService;
|
||||
|
||||
namespace WMS.Web.Domain.Services
|
||||
{
|
||||
/// <summary>
|
||||
/// 出库服务
|
||||
/// </summary>
|
||||
public class OutStockService: IOutStockService
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user