出库单保存
This commit is contained in:
17
src/WMS.Web.Domain/Mappers/OutStockMapper.cs
Normal file
17
src/WMS.Web.Domain/Mappers/OutStockMapper.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using AutoMapper;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using WMS.Web.Core.Dto.OutStock;
|
||||
using WMS.Web.Domain.Entitys;
|
||||
|
||||
namespace WMS.Web.Domain.Mappers
|
||||
{
|
||||
public class OutStockMapper : Profile
|
||||
{
|
||||
public OutStockMapper()
|
||||
{
|
||||
CreateMap<SaveOutStockRequest, OutStockDetails>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user