Files
tnb.server/ProductionMgr/Tnb.ProductionMgr.Entitys/Mapper/Mapper.cs
2023-04-26 14:08:11 +08:00

14 lines
329 B
C#

using Mapster;
using Tnb.ProductionMgr.Entities.Dto;
using Tnb.ProductionMgr.Entities;
namespace Tnb.ProductionMgr.Entities.Mapper
{
public class Mapper : IRegister
{
public void Register(TypeAdapterConfig config)
{
config.ForType<ProductionSchedulingCrInput, PrdTask>();
}
}
}