12 lines
357 B
C#
Raw Normal View History

2025-12-17 11:12:13 +08:00
namespace YD_Event.Application.Organization.Dtos;
2025-12-17 10:32:52 +08:00
public class Mapper : IRegister
{
public void Register(TypeAdapterConfig config)
{
//机构映射为下拉选项
config.ForType<SysOrganization, TreeSelectOutput>()
.Map(dest => dest.Value, src => src.Id)
.Map(dest => dest.Label, src => src.Name);
}
}