序列码支持老ops条码数据

This commit is contained in:
18942506660
2024-03-27 09:59:06 +08:00
parent e6ae36845e
commit ecf64bc0c9
9 changed files with 272 additions and 6 deletions

View File

@@ -0,0 +1,16 @@
using AutoMapper;
using System;
using System.Collections.Generic;
using System.Text;
using WMS.Web.Domain.Entitys;
namespace WMS.Web.Domain.Mappers
{
public class SerialNumbersMapper : Profile
{
public SerialNumbersMapper()
{
CreateMap<SerialNumbers_Ops, SerialNumbers>().ReverseMap();
}
}
}