using AutoMapper; using Volo.Abp.AutoMapper; using Win_in.Sfs.Wms.DataExchange.Domain; namespace Win_in.Sfs.Wms.DataExchange.Application; public class MessageReceiveAutoMapperProfile : Profile { public MessageReceiveAutoMapperProfile() { CreateMap().ReverseMap(); CreateMap() .Ignore(x => x.ConcurrencyStamp) .Ignore(x => x.ExtraProperties); } }