4
hao
2025-04-16 c5fb1fbcbb2bf4d511773d348f9ef625855c61fc
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
43
44
45
46
47
48
49
50
51
52
53
54
55
package com.web.kanban.service;
 
import com.app.base.data.ApiResponseResult;
 
import java.util.List;
 
import org.springframework.data.domain.PageRequest;
 
public interface KanbanService {
 
    /**
     * 获取看板列表
     * factory:公司
     * company:工厂
     * date:2021-10-19
     * **/
    public ApiResponseResult getKanbanMenu(String factory,String company)throws Exception;
    
    
    /**
     * kanbanNo:看板号,1-表示车间看板
     * lingNo:线号,没有线号时可为空
     * dataType:看板上的第几个数据源,1表示第一个
     * date:2020-12-23
     * **/
    public ApiResponseResult getKanbanData(String kanbanNo,String lingNo,String dataType)throws Exception;
    
    /**
     * kanbanNo:看板号,1-表示车间看板
     * lingNo:线号,没有线号时可为空
     * frequency:表示调用看板总次数
     * date:2021-10-18
     * **/
    public ApiResponseResult getTemplateData(String kanbanNo,String lineNo,int frequency)throws Exception;
 
    ApiResponseResult getIQCKanbanData(String floor)throws Exception;
 
    ApiResponseResult getMaterialAllSetData(String floor)throws Exception;
 
 
    ApiResponseResult getZPQTData2(String floor)throws Exception;
 
    ApiResponseResult getZPQTData(String floor)throws Exception;
 
    ApiResponseResult getBZData(String floor)throws Exception;
    ApiResponseResult getBZBlData(String floor)throws Exception;
    ApiResponseResult getZhiJaQTData(String floor)throws Exception;
    ApiResponseResult getZhiJaBlData(String floor)throws Exception;
    ApiResponseResult getZhiJaData(String floor)throws Exception;
 
    ApiResponseResult getLineHeadData(String floor)throws Exception;
 
    Boolean getUserImage(String code)throws Exception;
 
}