src/main/java/org/springblade/modules/house/controller/HouseholdController.java
@@ -199,5 +199,18 @@ return R.data(householdService.getHouseholdOtherInfo(household)); } /** * 用户信息统计 * @param code * @param roleType * @return */ @GetMapping("/getHouseHoldStatistics") @ApiOperationSupport(order = 14) @ApiOperation(value = "用户信息统计", notes = " ") public R getHouseHoldStatistics(@RequestParam("code") String code, @RequestParam("roleType") String roleType) { return R.data(householdService.getHouseHoldStatistics(code,roleType)); } }