Tiroble 3 years ago
parent
commit
6104e28ee1

+ 11 - 0
src/main/java/com/steerinfo/dil/controller/TmstruckReceiptResultController.java

@@ -233,5 +233,16 @@ public class TmstruckReceiptResultController extends BaseRESTfulController {
 
         return success(mapList.get(0));
     }
+    @ApiOperation(value = "获取收货作业照片")
+    @PostMapping("/getReceivingPhotoByUrl")
+    public Map<String,Object> getReceivingPhotoByUrl(@RequestParam String orderNumber) throws Exception {
+        List<Map<String,Object>> mapList = tmstruckReceiptResultService.getReceivingPhoto(orderNumber);
+        Map<String,Object> mapvalue = null;
+        if (mapList!=null){
+            mapvalue=mapList.get(0);
+        }
+        
+        return mapvalue;
+    }
 
 }