| package doumeemes.service.ext; | 
|   | 
| import doumeemes.core.model.ApiResponse; | 
| import doumeemes.core.model.PageData; | 
| import doumeemes.core.model.PageWrap; | 
| import doumeemes.dao.ext.dto.QueryRouteCardExtDTO; | 
| import doumeemes.dao.ext.vo.RouteCardExtListVO; | 
| import org.springframework.web.multipart.MultipartFile; | 
|   | 
| import java.io.IOException; | 
| import java.util.List; | 
|   | 
| /** | 
|  * 工艺卡管理Service定义 | 
|  * @author 江蹄蹄 | 
|  * @date 2022/06/27 13:58 | 
|  */ | 
| public interface RouteCardExtService { | 
|   | 
|     /** | 
|      * 分页查询 | 
|      * @author 江蹄蹄 | 
|      * @date 2022/06/27 13:58 | 
|      */ | 
|     PageData<RouteCardExtListVO> findPage(PageWrap<QueryRouteCardExtDTO> pageWrap); | 
|   | 
|     void importExcel(MultipartFile file) throws IOException; | 
|   | 
|   | 
|     List<RouteCardExtListVO> findlistBycondition(PageWrap<QueryRouteCardExtDTO> pageWrap); | 
|   | 
|   | 
|     ApiResponse<RouteCardExtListVO> getListByWorkOrderId(QueryRouteCardExtDTO pageWrap); | 
|   | 
| } |