宿舍费用确认待办和字段修改

This commit is contained in:
s1431_z_w
2025-08-26 17:35:16 +08:00
parent c69f628bbc
commit 1cd853a996
2 changed files with 2 additions and 2 deletions

View File

@@ -786,7 +786,7 @@
select concat('zsfy-',count(a.id)) as `all`
from dms_new_record as a
left join view_dms_record as d on a.stu_no = d.stu_no
where d.employee_id = #{tNo} and a.apply_status = 6
where d.employee_id = #{tNo} and a.apply_status = 6 and a.apply_status = 1
</select>

View File

@@ -57,7 +57,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<!-- 班级信息 -->
<select id="selectDeptByDeptCodes" parameterType="String" resultType="com.srs.comprehensive.domain.SrsClass">
SELECT DISTINCT v.class_id,v.class_name
FROM srs_dev.view_stu_info v
FROM view_stu_info v
JOIN srs_class c ON v.teacher_id = c.teacher_id
WHERE v.t_no = #{userName}
</select>