2022-03-11 11:08:50 +08:00
|
|
|
package com.engine.salary.service;
|
|
|
|
|
|
2022-03-15 09:55:58 +08:00
|
|
|
import java.util.Collection;
|
2022-03-11 11:08:50 +08:00
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
|
public interface AttendQuoteService {
|
2022-03-15 14:18:04 +08:00
|
|
|
/**AttendQuoteDataService
|
2022-03-11 11:08:50 +08:00
|
|
|
* 数据采集-考勤引用列表
|
|
|
|
|
*/
|
|
|
|
|
Map<String, Object> list(Map<String, Object> params);
|
|
|
|
|
|
2022-03-15 09:55:58 +08:00
|
|
|
/**
|
|
|
|
|
* 删除数据采集-考勤引用
|
|
|
|
|
* @param ids
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
String delete(Collection<Long> ids);
|
2022-03-16 14:29:02 +08:00
|
|
|
|
2022-03-11 11:08:50 +08:00
|
|
|
// /**
|
|
|
|
|
// * 获取引用考勤表单
|
|
|
|
|
// * @param currentEmployeeId
|
|
|
|
|
// * @return
|
|
|
|
|
// */
|
2022-03-16 14:29:02 +08:00
|
|
|
// Map<String, Object> getSyncForm(Long currentEmployeeId);
|
|
|
|
|
//
|
2022-03-11 11:08:50 +08:00
|
|
|
//
|
|
|
|
|
// /**
|
|
|
|
|
// * 获取薪资周期和考勤周期
|
|
|
|
|
// * @param salaryYearMonth
|
|
|
|
|
// * @param salarySobId
|
|
|
|
|
// * @return
|
|
|
|
|
// */
|
2022-03-16 14:29:02 +08:00
|
|
|
// Map<String, Object> getSalaryCycleAndAttendCycle(YearMonth salaryYearMonth, Long salarySobId);
|
2022-03-11 11:08:50 +08:00
|
|
|
//
|
|
|
|
|
// /**
|
|
|
|
|
// * 获取薪资账套下拉列表
|
|
|
|
|
// * @param currentEmployeeId
|
|
|
|
|
// * @return
|
|
|
|
|
// */
|
2022-03-16 14:29:02 +08:00
|
|
|
// List<Map<String, Object>> selectSalarySobList(Long currentEmployeeId);
|
2022-03-11 11:08:50 +08:00
|
|
|
}
|