Files
tnb.server/Tnb.ProductionPlanMgr.Entitys/Mapper/Mapper.cs
2023-04-21 09:06:49 +08:00

14 lines
343 B
C#

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