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
package com.web.spcBasic.service;
 
 
import org.springframework.data.domain.PageRequest;
 
import com.app.base.data.ApiResponseResult;
 
/**
 * spc图表
 * @author fyx
 *
 */
public interface ChartSpcService {
 
    public ApiResponseResult getProductList(String keyword,PageRequest pageRequest)  throws Exception;
    
    ApiResponseResult getItemnoList(String productCode, String keyword) throws Exception;
    
    public ApiResponseResult getProcessList(String productCode,String keyword)  throws Exception;
    
    ApiResponseResult getItemList(String productCode,String porcessCode,String keyword) throws Exception;
 
    public ApiResponseResult getFirstInOneChart(String suppCode,String prCode,
            String feId,String fdate,String tdate)  throws Exception;
    
    public ApiResponseResult getInOneChart(String suppCode,String prCode,
            String feId,String fdate,String tdate)  throws Exception;
    
    //20210129-fyx-查询spc图形的原始数据
    public ApiResponseResult getSpcData(String keyword,String suppCode,String prCode,
            String feId,String fdate,String tdate,PageRequest pageRequest)  throws Exception;
    
    
     public ApiResponseResult getInOneChartAndItemnos(String process, String project, String item_nos, String item_id, String fdate, String tdate) throws Exception;
}