package com.qianwen.smartman.modules.system.convert; import java.util.List; import java.util.Map; import java.util.stream.Collectors; import org.mapstruct.Builder; import org.mapstruct.Mapper; import org.mapstruct.Mapping; import org.mapstruct.Mappings; import org.mapstruct.factory.Mappers; import com.qianwen.smartman.modules.cps.enums.AppEnum; import com.qianwen.smartman.modules.system.dto.LicenseDetailDTO; import com.qianwen.smartman.modules.system.vo.LicenseDetailVO; @Mapper(builder = @Builder(disableBuilder = true), imports = {Collectors.class, AppEnum.class}) /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/convert/LicenseConverter.class */ public interface LicenseConverter { public static final LicenseConverter INSTANCE = (LicenseConverter) Mappers.getMapper(LicenseConverter.class); @Mappings({@Mapping(target = "moduleNames", expression = "java(collect)")}) LicenseDetailVO convert(LicenseDetailDTO detailDTO, Map> collect); }