1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.web.kanban.service;
|
| import com.app.base.data.ApiResponseResult;
| import org.springframework.data.domain.PageRequest;
|
| public interface GltKanbanService {
|
|
| //IQC待检看板
| ApiResponseResult getPRC_KB_IQC(PageRequest pageRequest) throws Exception ;
|
| ApiResponseResult getWarehouse(PageRequest pageRequest) throws Exception;
| }
|
|