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 resolvePicUrls(String pic); List resolveLocPicUrls(String locNo); }