出入库回退上下架

This commit is contained in:
tongfei
2023-10-31 10:42:11 +08:00
parent bcedfe0189
commit ddd67065dc
17 changed files with 439 additions and 12 deletions

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