yangys
2024-04-28 258a769f6790f832d1c67839d59be04a118767e5
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
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;
 
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();
}