1
2 天以前 c2ead3c7e7f1db81b6fc961e0f037abd0e8a4e2c
rsf-server/src/main/java/com/vincent/rsf/server/manager/controller/LocItemController.java
@@ -160,7 +160,7 @@
    @PreAuthorize("hasAuthority('manager:locItem:list')")
    @GetMapping("/locItem/{id}")
    public R get(@PathVariable("id") Long id) {
        return R.ok().add(locService.getById(id));
        return R.ok().add(locItemService.getById(id));
    }
    @PreAuthorize("hasAuthority('manager:locItem:save')")