45 lines
1.2 KiB
Java
45 lines
1.2 KiB
Java
|
|
package com.engine.salary.service;
|
||
|
|
|
||
|
|
import java.util.Map;
|
||
|
|
|
||
|
|
public interface AttendQuoteService {
|
||
|
|
/**
|
||
|
|
* 数据采集-考勤引用列表
|
||
|
|
*/
|
||
|
|
Map<String, Object> list(Map<String, Object> params);
|
||
|
|
|
||
|
|
// /**
|
||
|
|
// * 删除数据采集-考勤引用
|
||
|
|
// * @param ids
|
||
|
|
// * @param employeeId
|
||
|
|
// * @param tenantKey
|
||
|
|
// * @return
|
||
|
|
// */
|
||
|
|
// WeaResult<String> delete(Collection<Long> ids, Long employeeId, String tenantKey);
|
||
|
|
//
|
||
|
|
// /**
|
||
|
|
// * 获取引用考勤表单
|
||
|
|
// * @param currentEmployeeId
|
||
|
|
// * @param currentTenantKey
|
||
|
|
// * @return
|
||
|
|
// */
|
||
|
|
// WeaForm getSyncForm(Long currentEmployeeId, String currentTenantKey);
|
||
|
|
//
|
||
|
|
// /**
|
||
|
|
// * 获取薪资周期和考勤周期
|
||
|
|
// * @param salaryYearMonth
|
||
|
|
// * @param salarySobId
|
||
|
|
// * @param currentTenantKey
|
||
|
|
// * @return
|
||
|
|
// */
|
||
|
|
// Map<String, Object> getSalaryCycleAndAttendCycle(YearMonth salaryYearMonth, Long salarySobId, Long currentEmployeeId, String currentTenantKey);
|
||
|
|
//
|
||
|
|
// /**
|
||
|
|
// * 获取薪资账套下拉列表
|
||
|
|
// * @param currentEmployeeId
|
||
|
|
// * @param currentTenantKey
|
||
|
|
// * @return
|
||
|
|
// */
|
||
|
|
// List<Map<String, Object>> selectSalarySobList(Long currentEmployeeId, String currentTenantKey);
|
||
|
|
}
|