using AutoMapper;
using Volo.Abp.AutoMapper;
using Win_in.Sfs.Wms.Pda.Controllers.Jobs;
using Win_in.Sfs.Wms.Store.Application.Contracts;
using Win_in.Sfs.Wms.Store.Domain;
namespace Win_in.Sfs.Wms.Pda;
///
/// 实体映射
///
public class PdaHostAutoMapperProfile : Profile
{
///
/// 实体映射
///
public PdaHostAutoMapperProfile()
{
CreateMap()
.Ignore(x => x.TimeWindow)
.Ignore(x => x.SupplierName)
;
CreateMap()
.Ignore(x => x.ReturnType)
.Ignore(x => x.ReturnTime)
.Ignore(x => x.ActiveDate)
.Ignore(x => x.Details)
.Ignore(x => x.TenantId)
.Ignore(x => x.Remark)
.Ignore(x => x.ExtraProperties);
CreateMap();
}
}