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