jiangping
2023-08-17 6365ab0a976afdd247742c9b3dca15deb3a7a7a1
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
39
40
41
42
package doumeemes.service.ext;
 
import doumeemes.core.model.ApiResponse;
import doumeemes.core.model.PageData;
import doumeemes.core.model.PageWrap;
import doumeemes.dao.ext.dto.QueryAppliancesByManualDTO;
import doumeemes.dao.ext.vo.AppliancesExtListVO;
import doumeemes.dao.ext.dto.QueryAppliancesExtDTO;
import org.springframework.web.multipart.MultipartFile;
 
import java.io.IOException;
import java.util.List;
 
/**
 * 工装器具信息Service定义
 * @author 江蹄蹄
 * @date 2022/04/20 11:01
 */
public interface AppliancesExtService {
 
    /**
     * 分页查询
     * @author 江蹄蹄
     * @date 2022/04/20 11:01
     */
    PageData<AppliancesExtListVO> findPage(PageWrap<QueryAppliancesExtDTO> pageWrap);
 
    AppliancesExtListVO findMaxSerial(QueryAppliancesExtDTO pageWrap);
 
    ApiResponse importExcel(MultipartFile file, String categoryId) throws IOException;
 
    List<AppliancesExtListVO> selectListByCondition(QueryAppliancesExtDTO dto);
 
 
    ApiResponse chageApplicance(Integer oldId, Integer newId);
    ApiResponse chageApplicance(QueryAppliancesExtDTO dto)throws IOException;
 
    ApiResponse<List<AppliancesExtListVO>> getApplianceListByCondition(QueryAppliancesExtDTO dto);
 
    PageData<AppliancesExtListVO> findListPageForManual(PageWrap<QueryAppliancesByManualDTO> pageWrap);
 
}