17 lines
380 B
C#
17 lines
380 B
C#
using JNPF.Systems.Entitys.System;
|
|
using Mapster;
|
|
using SqlSugar;
|
|
using Tnb.BasicData.Entitys.Dto.ProcessManage;
|
|
using Tnb.BasicData.Entitys.Entity;
|
|
|
|
namespace Tnb.BasicData.Entitys.Mapper
|
|
{
|
|
public class Mapper : IRegister
|
|
{
|
|
public void Register(TypeAdapterConfig config)
|
|
{
|
|
config.ForType<BasRoute, RouteLineTreeOutput>();
|
|
}
|
|
}
|
|
}
|