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
package com.web.pda.lyt.lytPda.service;
 
import com.app.base.data.ApiResponseResult;
 
//样品签字录入
public interface PQCSampleSignService {
 
    // 获取批型号/工单号/工序名称-数据源
    ApiResponseResult getDataSource(String factory, String company, String ftype, String keyword,
            String boardModel) throws Exception;
 
    // 保存
    ApiResponseResult saveData(String factory, String company, String userNo, String boardModel, String taskNo,
            String expireDate, String procName, String procNo, String badItem, String signer) throws Exception;
 
    // 提交
    ApiResponseResult sumbitData(String factory, String company, String mid, String userNo, String operaType,
            String remark, String tableName) throws Exception;
 
    // 获取样品录入操作记录
    ApiResponseResult getRecordList(String factory, String company,String keyword, int size,
            int page) throws Exception;
}