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
package com.web.pda.lyt.lytPda.service;
 
import com.app.base.data.ApiResponseResult;
//PQC抽检录入
public interface PQCSamplingService {
 
    // 获取批号数据源
    public ApiResponseResult getBatchNum(String factory, String company,String ftype,
            String procno,String modelno, String keyword) throws Exception;
    
    //送检单号下拉数据源
    public ApiResponseResult getInspectOrder(String factory, String company, String batchNum) throws Exception;
    
    //获取送检单号详细信息
    public ApiResponseResult getInspectOrderInfo(String factory, String company, String userNo, 
            String batchNum,String classNo, String inspect) throws Exception;
    
    //获取检验项目: 0-检验项目下拉框数据源,1-检验项目列表数据源
    public ApiResponseResult getCheckItem(String factory, String company, String pid, String dataType) throws Exception;
    
    //执行修改操作
    public ApiResponseResult modifyPQCValue(String factory, String company, String userNo, String mid,
            String tableName, String changeName, String changeValue) throws Exception;
}