2025-12-17 11:12:13 +08:00

12 lines
357 B
C#

namespace YD_Event.Application.Organization.Dtos;
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);
}
}