改箱保存

This commit is contained in:
18942506660
2023-10-26 16:52:24 +08:00
parent 7d7256281e
commit 5f4e00a436
11 changed files with 303 additions and 7 deletions

View File

@@ -0,0 +1,20 @@
using AutoMapper;
using System;
using System.Collections.Generic;
using System.Text;
using WMS.Web.Core.Dto.ChangeBoxRecord;
using WMS.Web.Domain.Entitys;
namespace WMS.Web.Domain.Mappers
{
/// <summary>
/// 改箱
/// </summary>
public class ChangeBoxRecordMapper : Profile
{
public ChangeBoxRecordMapper()
{
CreateMap<SaveChangeBoxRecordRequest, ChangeBoxRecord>();
}
}
}