package com.qianwen.smartman.modules.tool.service; import com.baomidou.mybatisplus.core.metadata.IPage; import java.util.List; import com.qianwen.core.mp.base.BaseService; import com.qianwen.core.mp.support.Query; import com.qianwen.core.oss.model.BladeFile; import com.qianwen.smartman.modules.tool.entity.Tool; import com.qianwen.smartman.modules.tool.vo.ToolDischargeVO; import com.qianwen.smartman.modules.tool.vo.ToolManageEquipmentVO; import com.qianwen.smartman.modules.tool.vo.ToolManageSaveVO; import com.qianwen.smartman.modules.tool.vo.ToolManageTreeVO; import com.qianwen.smartman.modules.tool.vo.ToolManageUpdateVO; import com.qianwen.smartman.modules.tool.vo.ToolManageVO; import com.qianwen.smartman.modules.tool.vo.ToolQueryVO; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/tool/service/IToolManageService.class */ public interface IToolManageService extends BaseService { Boolean saveTool(ToolManageSaveVO toolManageSaveVO); Boolean updateTool(ToolManageUpdateVO toolManageUpdateVO); IPage pageTool(ToolQueryVO toolQueryVO, Query query); Boolean removeTool(List ids); List dischargeTool(ToolDischargeVO toolDischargeVO); ToolManageVO equipmentTool(ToolManageEquipmentVO toolManageEquipmentVO); Boolean resetTool(Long id); BladeFile exportToolManage(ToolQueryVO toolQueryVO) throws Exception; Boolean isExistCodeRule(String ruleFieldDictKey); List tree(); }