即时库存-相关
This commit is contained in:
@@ -21,9 +21,9 @@ namespace WMS.Web.Domain.Entitys
|
||||
/// </summary>
|
||||
public int BoxId { get; set; }
|
||||
/// <summary>
|
||||
/// 仓库ID
|
||||
/// 仓库编码
|
||||
/// </summary>
|
||||
public int StockId { get; set; }
|
||||
public string StockCode { get; set; }
|
||||
/// <summary>
|
||||
/// 仓库ID
|
||||
/// </summary>
|
||||
|
||||
13
src/WMS.Web.Domain/IService/IInventoryService.cs
Normal file
13
src/WMS.Web.Domain/IService/IInventoryService.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 IInventoryService
|
||||
{
|
||||
}
|
||||
}
|
||||
22
src/WMS.Web.Domain/Services/InventoryService.cs
Normal file
22
src/WMS.Web.Domain/Services/InventoryService.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using AutoMapper;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using WMS.Web.Domain.IService;
|
||||
|
||||
namespace WMS.Web.Domain.Services
|
||||
{
|
||||
/// <summary>
|
||||
/// 即时库存-服务
|
||||
/// </summary>
|
||||
public class InventoryService: IInventoryService
|
||||
{
|
||||
private readonly IMapper _mapper;
|
||||
public InventoryService(IMapper mapper)
|
||||
{
|
||||
_mapper = mapper;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user