yangys
2024-05-18 cc0bdfb33ef638dfafe3185c92c7076d815e1c9b
smart-man-boot/src/main/java/com/qianwen/smartman/modules/visual/service/impl/VisualCompTypeServiceImpl.java
@@ -24,7 +24,7 @@
import com.qianwen.smartman.modules.visual.vo.VisualCompMenuDetailVO;
@Service
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/visual/service/impl/VisualCompTypeServiceImpl.class */
public class VisualCompTypeServiceImpl extends BaseServiceImpl<VisualCompTypeMapper, VisualCompType> implements IVisualCompTypeService {
    private final IVisualCompService compService;
@@ -34,7 +34,7 @@
        this.compService = compService;
    }
    @Override // org.springblade.modules.visual.service.IVisualCompTypeService
    @Transactional
    public boolean remove(List<Long> ids) {
        removeByIds(ids);
@@ -52,7 +52,7 @@
        return true;
    }
    @Override // org.springblade.modules.visual.service.IVisualCompTypeService
    public List<VisualCompMenuDetailVO> treeMenu(Map<String, Object> params) {
        List<Long> componentIds = (List<Long>) params.get("componentIds");
        List<VisualCompType> list = list(Lambda.<VisualCompType>create().eq(VisualCompType::getStatus, Integer.valueOf(VisualCompTypeEnum.ENABLE.getValue())).orderByAsc(VisualCompType::getOrderNum));