src/main/java/org/springblade/modules/house/controller/UserHouseLabelController.java
@@ -177,4 +177,15 @@ } /** * 住户-标签 自定义分页 */ @GetMapping("/statisticalLabels") @ApiOperation(value = "统计标签", notes = "") public R<IPage<HouseholdLabelVO>> statisticalLabels(HouseholdLabelVO householdLabel, Query query) { IPage<HouseholdLabelVO> pages = householdLabelService.statisticalLabels(Condition.getPage(query), householdLabel); return R.data(pages); } }