commit
Some checks failed
API接口参数变更检测 / api-param-check (push) Has been cancelled

This commit is contained in:
2026-06-05 16:18:40 +08:00
parent 1ca34c6bb2
commit 3cba3bb74e
4393 changed files with 450030 additions and 103 deletions

View File

@@ -0,0 +1,32 @@
package jnpf.attendance.mapper;
import jnpf.model.attendance.vo.OvertimeVouchersVo;
import org.apache.ibatis.annotations.Param;
import java.util.Date;
import java.util.List;
/**
* describe
* 考勤审批相关
* @author HuangLinPan
* @date 2023/11/22
*/
public interface AttendanceApproveMapper {
/**
* 查前天的加班出勤规则找这些出勤规则对应的加班结果表数据
* @param date 日期
* @return java.util.List<jnpf.model.attendance.vo.OvertimeVouchersVo>
* @author hlp
*/
List<OvertimeVouchersVo> getOvertimeVouchersList(@Param("date") Date date);
/**
* 校验是否重复发放加班劵
* @param ruleId 排班Id
* @param code 类型 : 1.节日 2.假日 3.加班(调休)
*/
Integer getOvertimeByRuleId(@Param("ruleId") String ruleId, @Param("code") Integer code);
}