This commit is contained in:
Harryxzy 2022-09-26 17:13:50 +08:00
parent 1658f50fa7
commit 0e595ee21c
1 changed files with 12 additions and 0 deletions

View File

@ -1,6 +1,9 @@
package com.engine.bjcj220907.service;
import com.engine.bjcj220907.entity.JwCZInfo;
import java.util.Calendar;
import java.util.List;
/**
* @author Harryxzy
@ -16,4 +19,13 @@ public interface OverseasAllowanceCountService {
* @date 2022/9/26 14:05
*/
void countOverseasAllowance(Calendar countCal);
/**
* @description 获取用户在考勤周期内存在境外常驻信息过滤出来并且计算当月应常驻天数
* @return List<JwCZInfo>
* @author Harryxzy
* @date 2022/9/26 16:29
*/
List<JwCZInfo> getCZInfosAndCZDays(List<JwCZInfo> jwCZInfos, Calendar startAttendanceCal, Calendar endAttendanceCal);
}