箱唛接口功能

This commit is contained in:
tongfei
2024-01-27 16:57:30 +08:00
parent 1d7792ecf3
commit 1780e84ee4
16 changed files with 1174 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
using AutoMapper;
using System;
using System.Collections.Generic;
using System.Text;
using WMS.Web.Core.Dto;
using WMS.Web.Domain.Entitys;
namespace WMS.Web.Domain.Mappers
{
public class BoxMarkMapper : Profile
{
public BoxMarkMapper()
{
CreateMap<GenerateBoxMarkDto, BoxMark>();
}
}
}