新增加铺导员学生离校审批

This commit is contained in:
2025-08-15 20:56:52 +08:00
parent 10087857be
commit 04d3f3c7e9

View File

@@ -632,6 +632,12 @@
from knzz_tufa_apply as a
left join view_stu_info as b on a.stu_no = b.stu_no
where a.apply_status = 1 and b.t_no = #{tNo}
<!-- 知无涯 统计待审核的离校申请 -->
union
select concat('leave-',count(a.return_school_id)) as `all`
from sur_itinerary as a
left join view_stu_info as b on a.stu_no = b.stu_no
where a.leave_status = 1 and b.t_no = #{tNo}
</select>