From b9821b31e10fcde8bb1250ee62101af5f5298a0a Mon Sep 17 00:00:00 2001
From: huanghongfa <huanghongfa123456>
Date: 星期四, 14 四月 2022 14:11:05 +0800
Subject: [PATCH] 修改bug

---
 springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/service/impl/ComPbCheckUnitServiceImpl.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/service/impl/ComPbCheckUnitServiceImpl.java b/springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/service/impl/ComPbCheckUnitServiceImpl.java
index f65d9b7..66f4c44 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/service/impl/ComPbCheckUnitServiceImpl.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/service/impl/ComPbCheckUnitServiceImpl.java
@@ -57,13 +57,13 @@
      */
     @Override
     public R queryByPage(PageComPbCheckUnitDto comPbCheckUnit) {
-        IPage<ComPbCheckUnitVo> checkUnitVoIPage = this.baseMapper.queryAllByLimit(comPbCheckUnit, new Page(comPbCheckUnit.getPageNum(), comPbCheckUnit.getPageSize()));
-        checkUnitVoIPage.getRecords().forEach(checkUnit -> {
+        IPage<ComPbCheckUnitVo> checkUnitVoPage= this.baseMapper.queryAllByLimit(comPbCheckUnit, new Page(comPbCheckUnit.getPageNum(), comPbCheckUnit.getPageSize()));
+        checkUnitVoPage.getRecords().forEach(checkUnit -> {
             if(StringUtils.isEmpty(checkUnit.getOrgName())){
                 checkUnit.setOrgName("待编辑党支部");
             }
         });
-        return R.ok(checkUnitVoIPage);
+        return R.ok(checkUnitVoPage);
     }
 
     /**

--
Gitblit v1.7.1