0926PM-2
This commit is contained in:
parent
1658f50fa7
commit
0e595ee21c
|
|
@ -1,6 +1,9 @@
|
||||||
package com.engine.bjcj220907.service;
|
package com.engine.bjcj220907.service;
|
||||||
|
|
||||||
|
import com.engine.bjcj220907.entity.JwCZInfo;
|
||||||
|
|
||||||
import java.util.Calendar;
|
import java.util.Calendar;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Harryxzy
|
* @author Harryxzy
|
||||||
|
|
@ -16,4 +19,13 @@ public interface OverseasAllowanceCountService {
|
||||||
* @date 2022/9/26 14:05
|
* @date 2022/9/26 14:05
|
||||||
*/
|
*/
|
||||||
void countOverseasAllowance(Calendar countCal);
|
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);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue