1 жил өмнө
parent
commit
bb264de24e

+ 2 - 2
platform-rest/src/main/java/com/platform/rest/controller/sbUnused/SbUnusedController.java

@@ -43,8 +43,8 @@ public class SbUnusedController {
       return new R<>(sbUnusedService.getModelById(id));
   }
 
-  @GetMapping("/queryById")
-  public R<SbUnusedVO> getById2( String id){
+  @GetMapping("/queryById/{id}")
+  public R<SbUnusedVO> getById2( @PathVariable String id){
     return new R<>(sbUnusedService.getModelById2(id));
   }