|
@@ -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;
|
|
|
+ }
|
|
|
|
|
|
}
|