1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.web.pda.lyt.lytPda.service;
|
| import com.app.base.data.ApiResponseResult;
| //PQC复测抽检录入
| public interface PQCRetestService {
|
| // 获取批号/送检单号/检查水平/接收标准数据源
| ApiResponseResult getRetestData(String factory, String company,String ftype,String procno,String modelno,String keyword) throws Exception;
|
| // 获取送检单号详细信息
| ApiResponseResult getInspectionInfo(String factory, String company, String userNo,
| String lineType, String procNo, String lotNO, String classNO) throws Exception;
|
| // 执行选择检查水平/接收标准/电池类型/客户名称的操作
| ApiResponseResult modifyPQCValue(String factory, String company, String userNo, String mid,
| String tableName, String changeName, String changeValue) throws Exception;
|
|
| ApiResponseResult getBillReturn(String billNo) throws Exception;
| }
|
|