4
hao
2025-04-16 c5fb1fbcbb2bf4d511773d348f9ef625855c61fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.web.pda.lyt.lytPda.service;
 
import com.app.base.data.ApiResponseResult;
//极片露空时间录入
public interface PQCPolepieceService {
 
    //获取列表页
    ApiResponseResult getItemList(String factory, String company,String keyword
            ,String mid,int size,int page)throws Exception;
    
    //保存
    ApiResponseResult saveData(String factory, String company,String userNo,String mid,
            String endTime,String foven)throws Exception;
    
    //提交
    ApiResponseResult sumbitData(String factory, String company,String mid,String userNo,
        String operaType ,String remark,String tableName)throws Exception;
}