| | |
| | | @RestController |
| | | @ApiResource({"blade-system/param"}) |
| | | @NonDS |
| | | /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/controller/ParamController.class */ |
| | | public class ParamController extends BladeController { |
| | | private final IParamService paramService; |
| | | @Autowired |
| | |
| | | @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); |
| | | } |
| | | |