You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
537 B
24 lines
537 B
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;
|
|
|
|
/// <summary>
|
|
/// 实体映射
|
|
/// </summary>
|
|
public class PdaHostAutoMapperProfile : Profile
|
|
{
|
|
/// <summary>
|
|
/// 实体映射
|
|
/// </summary>
|
|
public PdaHostAutoMapperProfile()
|
|
{
|
|
CreateMap<PurchaseReceiptJobDTO, PurchaseReceiptJobWithSupplierDTO>()
|
|
.Ignore(x => x.TimeWindow)
|
|
.Ignore(x => x.SupplierName)
|
|
;
|
|
|
|
}
|
|
}
|
|
|