自动化立体仓库 - WMS系统
zwl
9 小时以前 489eca56172f0abf9a35fd5b36498ba048149944
src/main/java/com/zy/asrs/service/InboundCameraCaptureService.java
@@ -1,11 +1,20 @@
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);