1
hao
2025-05-20 8e24c6fea30d9b179375ee2893710cdec2443b13
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.web.pda.gltPda_wdPda.service;
 
import com.app.base.data.ApiResponseResult;
 
public interface LittleInputService {
 
    //根据设备号获取信息
    public ApiResponseResult afterDevice(String deviceNo) throws Exception;
 
    //根据物流条码获取信息
    public ApiResponseResult afterBarcoe(String barcode) throws Exception;
 
    //根据数量获取信息
    public ApiResponseResult afterQty(String param) throws Exception;
    
    //根据投料列表
    public ApiResponseResult getList(String device,int page) throws Exception;
    
  //删除
    public ApiResponseResult delete(String order) throws Exception;
}