2022-03-11 11:08:50 +08:00
|
|
|
package com.engine.salary.service;
|
|
|
|
|
|
2022-04-21 14:15:56 +08:00
|
|
|
import com.engine.salary.entity.datacollection.dto.AttendQuoteListDTO;
|
|
|
|
|
import com.engine.salary.entity.datacollection.param.AttendQuoteQueryParam;
|
2024-02-21 18:19:02 +08:00
|
|
|
import com.engine.salary.entity.datacollection.po.AttendQuotePO;
|
2022-04-21 14:15:56 +08:00
|
|
|
import com.engine.salary.util.page.PageInfo;
|
|
|
|
|
|
2022-05-05 10:35:58 +08:00
|
|
|
import java.time.YearMonth;
|
2022-03-15 09:55:58 +08:00
|
|
|
import java.util.Collection;
|
2024-08-06 16:54:19 +08:00
|
|
|
import java.util.List;
|
2022-03-11 11:08:50 +08:00
|
|
|
|
|
|
|
|
public interface AttendQuoteService {
|
|
|
|
|
|
2022-04-21 14:15:56 +08:00
|
|
|
/**
|
|
|
|
|
* 数据采集-考勤引用列表(分页)
|
|
|
|
|
*
|
|
|
|
|
* @param queryParam
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
PageInfo<AttendQuoteListDTO> listPage(AttendQuoteQueryParam queryParam);
|
|
|
|
|
|
2025-03-21 13:28:01 +08:00
|
|
|
List<Long> getKqyyAuthByEmp(Long currentEmployeeId);
|
|
|
|
|
|
2022-04-21 14:15:56 +08:00
|
|
|
|
2022-03-15 09:55:58 +08:00
|
|
|
/**
|
|
|
|
|
* 删除数据采集-考勤引用
|
2022-04-21 14:15:56 +08:00
|
|
|
*
|
2022-03-15 09:55:58 +08:00
|
|
|
* @param ids
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2022-04-21 14:15:56 +08:00
|
|
|
String delete(Collection<Long> ids);
|
2022-05-05 10:35:58 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 检查是否可以操作
|
|
|
|
|
*
|
|
|
|
|
* @param salaryYearMonth
|
2024-08-06 16:54:19 +08:00
|
|
|
* @param salarySobIds
|
2022-05-05 10:35:58 +08:00
|
|
|
* @return
|
|
|
|
|
*/
|
2024-08-06 16:54:19 +08:00
|
|
|
Boolean checkOperation(YearMonth salaryYearMonth, List<Long> salarySobIds);
|
2022-05-05 10:35:58 +08:00
|
|
|
|
2024-02-21 18:19:02 +08:00
|
|
|
AttendQuotePO getById(Long id);
|
|
|
|
|
|
2022-03-11 11:08:50 +08:00
|
|
|
}
|