bug修复

This commit is contained in:
2025-03-18 11:52:24 +08:00
parent c0fe9c8885
commit dffce9e679
15 changed files with 125 additions and 55 deletions

View File

@@ -38,4 +38,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</select>
<select id="queryWorkDayNumByMonth" resultType="java.lang.Long">
SELECT
count(*)
FROM sys_oa_holiday soh
where (soh.type ='0' or soh.type ='3')
and YEAR(#{payTime}) = YEAR(soh.holiday_time)
and MONTH(#{payTime}) = MONTH(soh.holiday_time)
</select>
</mapper>