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}