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);