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
25
26
27
package com.web.pda.gltPda_wdPda.service;
 
import com.app.base.data.ApiResponseResult;
 
public interface CreateService {
 
    //根据设备号获取信息
    public ApiResponseResult afterDevice(String device) throws Exception;
 
    //根据工位获取信息
    public ApiResponseResult afterStation(String station) throws Exception;
 
    //根据工号获取信息
    public ApiResponseResult afterJob(String userCode) throws Exception;
 
    //根据工单获取信息
    public ApiResponseResult afterOrder(String order) throws Exception;
 
    //根批量获取信息
    public ApiResponseResult afterBatch(String param) throws Exception;
 
    //删除
    public ApiResponseResult delete(String order) throws Exception;
    
  //根据投料列表
    public ApiResponseResult getList(String device,int page) throws Exception;
}