完善定时请假的逻辑

This commit is contained in:
2025-02-27 15:16:33 +08:00
parent 008cd430ef
commit f044bc2bd0
7 changed files with 161 additions and 6 deletions

View File

@ -40,9 +40,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
a.auditor_type
FROM
wgz_daily_clock a
LEFT JOIN bgt_user b ON (a.user_id = b.user_id and b.del_flag = 0)
LEFT JOIN wgz_user b ON (a.user_id = b.user_id and b.del_flag = 0)
WHERE
a.del_flag = 0
a.user_id = #{req.userId} and a.del_flag = 0
ORDER BY
a.id DESC
</select>