| | |
| | | */ |
| | | @GetMapping("/list") |
| | | @ApiOperationSupport(order = 2) |
| | | @ApiOperation(value = "分页", notes = "传入fwDeviceConfig") |
| | | @ApiOperation(value = "列表", notes = "传入fwDeviceConfig") |
| | | public R<IPage<FwDeviceConfigVO>> list(@ApiIgnore @RequestParam Map<String, Object> fwDeviceConfig, Query query) { |
| | | IPage<FwDeviceConfigEntity> pages = fwDeviceConfigService.page(Condition.getPage(query), Condition.getQueryWrapper(fwDeviceConfig, FwDeviceConfigEntity.class)); |
| | | return R.data(FwDeviceConfigWrapper.build().pageVO(pages)); |