springcloud_k8s_panzhihuazhihuishequ/community_backstage/src/main/java/com/panzhihua/community_backstage/api/ComPropertyRepairApi.java
@@ -30,7 +30,7 @@ @PostMapping("/queryAll") public R selectAll(@RequestBody CommonPage commonPage) { commonPage.setParamId(this.getCommunityId()); commonPage.setAreaId(this.getAreaId()); //commonPage.setAreaId(this.getAreaId()); return this.propertyService.comPropertyRepairSelectAll(commonPage); } springcloud_k8s_panzhihuazhihuishequ/service_property/src/main/java/com/panzhihua/service_property/service/impl/ComPropertyHelpServiceImpl.java
@@ -1,5 +1,6 @@ package com.panzhihua.service_property.service.impl; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.panzhihua.common.model.dtos.property.CommonPage; import com.panzhihua.common.model.vos.R; @@ -24,6 +25,6 @@ private ComPropertyHelpDao comPropertyHelpDao; @Override public R pageList(CommonPage commonPage) { return null; return R.ok(comPropertyHelpDao.pageList(new Page(commonPage.getPage(),commonPage.getSize()),commonPage)); } }