From a1fb5bae10f344d719b499bea409fec3cc75ceb8 Mon Sep 17 00:00:00 2001
From: liyj <15602261488@163.com>
Date: Thu, 19 Sep 2024 10:13:34 +0800
Subject: [PATCH] 当事人评价后流程显示不对修复

---
 dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/service/CaseWindupApplyService.java |   51 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 51 insertions(+), 0 deletions(-)

diff --git a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/service/CaseWindupApplyService.java b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/service/CaseWindupApplyService.java
index 3b6f423..42a6a3d 100644
--- a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/service/CaseWindupApplyService.java
+++ b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/service/CaseWindupApplyService.java
@@ -4,6 +4,7 @@
 import cn.huge.base.common.utils.DateUtils;
 import cn.huge.base.common.utils.IdUtils;
 import cn.huge.base.common.utils.ObjectUtils;
+import cn.huge.module.cases.domain.dto.FrontPageListDTO;
 import cn.huge.module.cases.domain.po.CaseInfo;
 import cn.huge.module.client.api.impl.UtilsClientImpl;
 import cn.huge.module.cases.dao.mapper.CaseWindupApplyMapper;
@@ -158,4 +159,54 @@
         }
     }
 
+    /**
+     * 首页-待审核分页查询
+     * @param terms 条件
+     * @return Page
+     */
+    public long countMyTaskApplyReview(Map<String, Object> terms){
+        long total = mapper.countMyTaskApplyReview(terms);
+        return total;
+    }
+
+    /**
+     * 首页-待审核查询
+     * @param page 分页对象
+     * @param terms 条件
+     * @return Page
+     */
+    public List<FrontPageListDTO> listMyTaskApplyReview(PageRequest page, Map<String, Object> terms){
+        List<FrontPageListDTO> frontPageListDTOList = mapper.listMyTaskApplyReview(page, terms);
+        return frontPageListDTOList;
+    }
+
+    /**
+     * 首页-查询数量
+     * @param auditUnitId 条件
+     * @return Page
+     */
+    public long countApplyReview(String auditUnitId){
+        return mapper.countApplyReview(auditUnitId);
+    }
+
+    /**
+     * 首页-查询待办任务-办理任务数量统计
+     * @param terms 条件
+     * @return Page
+     */
+    public long countMySubmitApplyReview(Map<String, Object> terms){
+        long total = mapper.countMySubmitApplyReview(terms);
+        return total;
+    }
+
+    /**
+     * 首页-查询待办任务-办理任务
+     * @param page 分页对象
+     * @param terms 条件
+     * @return Page
+     */
+    public List<FrontPageListDTO> listMySubmitApplyReview(PageRequest page, Map<String, Object> terms){
+        List<FrontPageListDTO> frontPageListDTOList = mapper.listMySubmitApplyReview(page, terms);
+        return frontPageListDTOList;
+    }
 }

--
Gitblit v1.8.0