yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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<Tool> {
    Boolean saveTool(ToolManageSaveVO toolManageSaveVO);
 
    Boolean updateTool(ToolManageUpdateVO toolManageUpdateVO);
 
    IPage<ToolManageVO> pageTool(ToolQueryVO toolQueryVO, Query query);
 
    Boolean removeTool(List<Long> ids);
 
    List<ToolManageVO> dischargeTool(ToolDischargeVO toolDischargeVO);
 
    ToolManageVO equipmentTool(ToolManageEquipmentVO toolManageEquipmentVO);
 
    Boolean resetTool(Long id);
 
    BladeFile exportToolManage(ToolQueryVO toolQueryVO) throws Exception;
 
    Boolean isExistCodeRule(String ruleFieldDictKey);
 
    List<ToolManageTreeVO> tree();
}