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
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
56
57
58
59
60
61
62
63
64
65
66
67
68
package com.web.lytreport.service;
 
import javax.servlet.http.HttpServletResponse;
 
import org.springframework.data.domain.PageRequest;
 
import com.app.base.data.ApiResponseResult;
 
public interface LytReportService {
 
    //获取工单下拉数据源
    public ApiResponseResult getTaskNo(String keyword)throws Exception;
    
    //获取-电芯测试结果报表-44386.html
    public ApiResponseResult getDXTestReport(String taskNo,String batNo,String begTime,String endTime,PageRequest pageRequest)throws Exception;
    //导出-电芯测试结果报表
    public void getDXTestExport(HttpServletResponse response,String taskNo,String batNo,String begTime,String endTime)throws Exception;
    
    //获取-模组测试结果报表-45112.html
    public ApiResponseResult getMZTestReport(String taskNo,String batNo,String begTime,String endTime,PageRequest pageRequest)throws Exception;
    //导出-模组测试结果报表
    public void getMZTestExport(HttpServletResponse response,String taskNo,String batNo,String begTime,String endTime)throws Exception;
        
    //获取-气密性测试结果报表-44962.html
    public ApiResponseResult getQMXTestReport(String taskNo,String batNo,String begTime,String endTime,PageRequest pageRequest)throws Exception;
    //导出-气密性测试结果报表
    public void getQMXTestExport(HttpServletResponse response,String taskNo,String batNo,String begTime,String endTime)throws Exception;
    
    //获取-整机测试结果报表-44939.html
    public ApiResponseResult getZJTestReport(String taskNo,String batNo,String begTime,String endTime,PageRequest pageRequest)throws Exception;
    //导出-整机测试结果报表
    public void getZJTestExport(HttpServletResponse response,String taskNo,String batNo,String begTime,String endTime)throws Exception;
    
    //电芯配对测试结果报表-45119.html(1)
    public ApiResponseResult getPDTestReport(String taskNo,String batNo,String begTime,String endTime,PageRequest pageRequest)throws Exception;
    //导出-电芯配对测试结果报表
    public void getPDTestExport(HttpServletResponse response,String taskNo,String batNo,String begTime,String endTime)throws Exception;
        
    //电芯配对统计报表-45119.html(2)
    public ApiResponseResult getPDSumReport(String taskNo,String batNo,String begTime,String endTime,PageRequest pageRequest)throws Exception;
    //导出-电芯配对测试结果报表
    public void getPDSumExport(HttpServletResponse response,String taskNo,String batNo,String begTime,String endTime)throws Exception;
        
    //质量IQC来料检验台账-1
    public ApiResponseResult getQualCheckReport1(String year,String month, String target,Integer dataType)throws Exception;
    //导出-质量IQC来料检验台账-汇总
    public void getQualCheckExport1(HttpServletResponse response,String year,String month, String target,Integer dataType)throws Exception;
            
    //质量IQC来料检验台账-2
    public ApiResponseResult getQualCheckReport2(String year,String month, String target,Integer dataType)throws Exception;
    //导出-质量IQC来料检验台账-汇总
    public void getQualCheckExport2(HttpServletResponse response,String year,String month, String target,Integer dataType)throws Exception;
        
    //生产日报-按工单
    public ApiResponseResult getProdDailyByTaskReport(String proc,String begTime,String endTime, Integer dataType)throws Exception;
    //导出-生产日报-按工单
    public void getProdDailyByTaskExport(HttpServletResponse response,String proc,String begTime,String endTime, Integer dataType)throws Exception;
    
    //包装记录结果(决策报表)
    public ApiResponseResult getPackRecordReport(String taskNo,String batNo,String begTime,String endTime,PageRequest pageRequest)throws Exception;
    //导出包装记录结果(决策报表)
    public void getPackRecordExport(HttpServletResponse response,String taskNo,String batNo,String begTime,String endTime)throws Exception;
    //包装记录结果(决策报表)- 汇总
    public ApiResponseResult getPackRecordSumReport(String taskNo,String batNo,String begTime,String endTime,PageRequest pageRequest)throws Exception;
    //导出包装记录结果(决策报表)- 汇总
    public void getPackRecordSumExport(HttpServletResponse response,String taskNo,String batNo,String begTime,String endTime)throws Exception;
    
}