|  |  | 
 |  |  |                                             @RequestBody SingleUnstackingCompleteParam param, | 
 |  |  |                                             HttpServletRequest request) { | 
 |  |  |         auth(appkey, param, request); | 
 |  |  |         openService.singleUnstackingComplete(param); | 
 |  |  |         try{ | 
 |  |  |             openService.singleUnstackingComplete(param); | 
 |  |  |         } catch (Exception e){ | 
 |  |  |             return R.error(e.getMessage()).add(e.getMessage()); | 
 |  |  |         } | 
 |  |  |         return R.ok(param); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  | 
 |  |  |                                             @RequestBody SingleMountUnstackingCompleteParam param, | 
 |  |  |                                             HttpServletRequest request) { | 
 |  |  |         auth(appkey, param, request); | 
 |  |  |         openService.singleMountUnstackingComplete(param); | 
 |  |  |         try{ | 
 |  |  |             openService.singleMountUnstackingComplete(param); | 
 |  |  |         } catch (Exception e){ | 
 |  |  |             return R.error(e.getMessage()).add(e.getMessage()); | 
 |  |  |         } | 
 |  |  |         return R.ok(param); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * FQC质检 | 
 |  |  |      */ | 
 |  |  |     @PostMapping("/quality/inspection/auth/v1") | 
 |  |  |     @AppAuth(memo = "FQC质检") | 
 |  |  |     public synchronized R qualityInspection(@RequestHeader(required = false) String appkey, | 
 |  |  |                                            @RequestBody QualityInspectionParam param, | 
 |  |  |                                            HttpServletRequest request) { | 
 |  |  |         auth(appkey, param, request); | 
 |  |  |         openService.qualityInspection(param); | 
 |  |  |         return R.ok(); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     /*...........................上饶江铜..............以上.............徐工汉云...........................*/ | 
 |  |  |  | 
 |  |  | } |