weaver-hrm-salary/src/com/engine/salary/mapper/siarchives/FundSchemeMapper.java

37 lines
839 B
Java
Raw Normal View History

2022-03-16 17:04:21 +08:00
package com.engine.salary.mapper.siarchives;
2022-03-15 17:39:19 +08:00
import com.engine.salary.entity.siarchives.po.InsuranceArchivesFundSchemePO;
import org.apache.ibatis.annotations.Param;
2022-03-17 15:26:33 +08:00
import java.util.Collection;
import java.util.List;
2022-03-15 17:39:19 +08:00
/**
* @Author weaver_cl
* @Description: TODO
* @Date 2022/3/15
* @Version V1.0
**/
public interface FundSchemeMapper {
/**
* 根据员工id获取
* @param employeeId
* @return
*/
InsuranceArchivesFundSchemePO getFundByEmployeeId(@Param("employeeId")Long employeeId);
2022-03-17 15:26:33 +08:00
/**
* 批量删除
* @param singletonList
*/
void batchDeleteByEmployeeIds(@Param("employeeIds") Collection<Long> singletonList);
/**
* 批量保存
* @param singletonList
*/
void batchSave(@Param("fundSchemePOS") List<InsuranceArchivesFundSchemePO> singletonList);
2022-03-15 17:39:19 +08:00
}