14 lines
333 B
C#
14 lines
333 B
C#
using Mapster;
|
|
using Tnb.ProductionMgr.Entitys.Dto;
|
|
using Tnb.ProductionMgr.Entitys.Entity;
|
|
|
|
namespace Tnb.ProductionMgr.Entitys.Mapper
|
|
{
|
|
public class Mapper : IRegister
|
|
{
|
|
public void Register(TypeAdapterConfig config)
|
|
{
|
|
config.ForType<ProductionSchedulingCrInput, PrdTask>();
|
|
}
|
|
}
|
|
} |