From eb690f53d6b300018b890e441853387ca912391c Mon Sep 17 00:00:00 2001 From: ningbo <3301955438@qq.com> Date: Tue, 19 Aug 2025 22:59:53 +0800 Subject: [PATCH] =?UTF-8?q?feat(performance):=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E8=BE=85=E5=AF=BC=E5=91=98=E7=AE=A1=E7=90=86=E6=88=90=E6=9E=9C?= =?UTF-8?q?=E7=BB=A9=E6=95=88=E7=9B=B8=E5=85=B3=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增学务初审、书记审核、科室复核和学工处长终审的待办查询 - 在现有的绩效查询基础上增加了成果绩效的统计 - 通过联合查询和条件筛选,实现了对不同审核阶段的待办任务计数 --- .../comprehensive/CphGoodApplyMapper.xml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/srs-comprehensive/src/main/resources/mapper/comprehensive/CphGoodApplyMapper.xml b/srs-comprehensive/src/main/resources/mapper/comprehensive/CphGoodApplyMapper.xml index 306231b..f4cda59 100644 --- a/srs-comprehensive/src/main/resources/mapper/comprehensive/CphGoodApplyMapper.xml +++ b/srs-comprehensive/src/main/resources/mapper/comprehensive/CphGoodApplyMapper.xml @@ -644,6 +644,12 @@ from sys_performance as a left join sys_user as b on a.credit_pass = b.user_name where a.xwstatus IS NULL and b.dept_id = #{id} +# 宁博-辅导员管理--成果绩效----(第1步:学务初审) + union + select concat('cg-',count(a.check_id)) as `all` + from sys_teacher_achievementcheck as a + left join sys_user as b on a.teacher_id = b.user_name + where a.check_status = 1 and b.dept_id = #{id} @@ -791,6 +803,12 @@ from sys_performance as a left join sys_user as b on a.credit_pass = b.user_name where a.xwstatus IS NOT NULL and a.shstatus IS NULL and b.dept_id = #{id} +# 宁博-辅导员管理--成果绩效----待办 (第2步:书记审核) + union + select concat('cg-',count(a.check_id)) as `all` + from sys_teacher_achievementcheck as a + left join sys_user as b on a.teacher_id = b.user_name + where a.check_status = 2 and b.dept_id = #{id}