同步新物料接口
This commit is contained in:
17
src/WMS.Web.Domain/Mappers/MaterialMapper.cs
Normal file
17
src/WMS.Web.Domain/Mappers/MaterialMapper.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using AutoMapper;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using WMS.Web.Core.Dto.Erp;
|
||||
using WMS.Web.Domain.Entitys;
|
||||
|
||||
namespace WMS.Web.Domain.Mappers
|
||||
{
|
||||
public class MaterialMapper : Profile
|
||||
{
|
||||
public MaterialMapper()
|
||||
{
|
||||
CreateMap<ErpMaterialDto, Materials>().ReverseMap();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user