Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.DTOModel/ERP/Purchase/MapperConfig/PurchaseProfile.cs

21 lines
468 B
C#
Raw Normal View History

2023-01-04 18:16:56 +08:00
using AutoMapper;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yi.Framework.Model.ERP.Entitys;
namespace Yi.Framework.DtoModel.ERP.Purchase.MapperConfig
{
public class SuppliERProfile:Profile
{
public SuppliERProfile()
{
2023-01-04 20:50:10 +08:00
CreateMap<PurchaseCreateInput, PurchaseEntity>();
2023-01-04 18:16:56 +08:00
CreateMap<PurchaseEntity, PurchaseGetListOutput>();
}
}
}