yangys
2024-05-18 cc0bdfb33ef638dfafe3185c92c7076d815e1c9b
smart-man-boot/src/main/java/com/qianwen/smartman/modules/system/controller/ParamController.java
@@ -64,7 +64,7 @@
    @GetResource({"/detail"})
    @ApiOperation(value = "详情", notes = "传入param")
    public R<Param> detail(Param param) {
        Param detail = (Param) this.paramService.getOne(Condition.getQueryWrapper(param));
        Param detail = this.paramService.getOne(Condition.getQueryWrapper(param));
        return R.data(detail);
    }