重新组织目录

This commit is contained in:
2023-04-21 09:26:04 +08:00
parent 41580fe1fb
commit bddd6ac805
33 changed files with 76 additions and 75 deletions

View File

@@ -0,0 +1,14 @@
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>();
}
}
}