diff --git a/srs-comprehensive/src/main/resources/mapper/comprehensive/CphGoodApplyMapper.xml b/srs-comprehensive/src/main/resources/mapper/comprehensive/CphGoodApplyMapper.xml index 306231b..1aa0281 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} + -- 陈冠元 辅导员业绩考核-学务审核待办 + union + select concat('yj-',count(a.id)) as `all` + from sys_teacher_kpi_filling as a + left join sys_user as b on a.job_number = b.user_name + where a.role_audit = 1 and b.dept_id = #{id} @@ -791,6 +804,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} + -- 陈冠元 辅导员业绩考核-学院书记待办 + union + select concat('yj-',count(a.id)) as `all` + from sys_teacher_kpi_filling as a + left join sys_user as b on a.job_number = b.user_name + where a.role_audit = 2 and b.dept_id = #{id}