1
hao
2025-05-20 8e24c6fea30d9b179375ee2893710cdec2443b13
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
package com.web.kanban.service;
 
import com.app.base.data.ApiResponseResult;
import org.springframework.data.domain.PageRequest;
 
import javax.servlet.http.HttpServletResponse;
 
public interface HgKanbanService {
 
 
    //获取-仓库待入库看板-44386.html
    public ApiResponseResult getPRC_KB_DEPOTS(PageRequest pageRequest)throws Exception;
    //IQC待检看板
    ApiResponseResult getPRC_KB_IQC(PageRequest pageRequest) throws Exception ;
    //线头看板
    ApiResponseResult getPRC_APP_KANBAN_DATA_DCDC(PageRequest pageRequest);
    //总看板
    ApiResponseResult getPRC_APP_KANBAN_DATA_ZKB(PageRequest pageRequest);
 
    ApiResponseResult getV23Kanban(PageRequest pageRequest);
 
    ApiResponseResult getV24Kanban(PageRequest pageRequest);
 
    ApiResponseResult getGeneralPanelV23(PageRequest pageRequest);
 
    ApiResponseResult getGeneralPanelV24(PageRequest pageRequest);
}