出入库回退上下架
This commit is contained in:
17
src/WMS.Web.Domain/Mappers/BackRecordMapper.cs
Normal file
17
src/WMS.Web.Domain/Mappers/BackRecordMapper.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using AutoMapper;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using WMS.Web.Core.Dto.BackRecord;
|
||||
using WMS.Web.Domain.Entitys;
|
||||
|
||||
namespace WMS.Web.Domain.Mappers
|
||||
{
|
||||
public class BackRecordMapper : Profile
|
||||
{
|
||||
public BackRecordMapper()
|
||||
{
|
||||
CreateMap<SaveBackRecordDetailsRequest, BackRecordDetails>().ReverseMap();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user