自动化立体仓库 - WMS系统
zwl
1 天以前 ff66ddf96807fac02e01c7d2ecdfd1ba808af9c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.zy.asrs.service;
 
import com.zy.asrs.entity.WrkMast;
 
import java.util.List;
 
public interface InboundCameraCaptureService {
 
    String CAPTURE_PENDING = "CAMERA_PENDING";
    String CAPTURE_RUNNING = "CAMERA_RUNNING";
    String CAPTURE_DONE = "CAMERA_DONE";
    String CAPTURE_FAILED = "CAMERA_FAILED";
 
    String capture(Integer sourceStaNo, String locNo, String barcode);
 
    void processPendingCapture(WrkMast wrkMast);
 
    List<String> resolvePicUrls(String pic);
 
    List<String> resolveLocPicUrls(String locNo);
}