出库单保存

This commit is contained in:
18942506660
2023-10-28 10:06:16 +08:00
parent cff81fe647
commit 830ff9ea98
4 changed files with 83 additions and 2 deletions

View 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>();
}
}
}