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;
|
|
|
|
|
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;
|
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);
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
* @param salarySobId
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
Boolean checkOperation(YearMonth salaryYearMonth, Long salarySobId);
|
|
|
|
|
|
2022-03-11 11:08:50 +08:00
|
|
|
}
|