package com.engine.salary.mapper.siarchives; import com.engine.salary.entity.siarchives.po.InsuranceArchivesFundSchemePO; import org.apache.ibatis.annotations.Param; import java.util.Collection; import java.util.List; /** * @Author weaver_cl * @Description: 该条数据不在个税扣缴义务人人员范围内,不可导入 * @Date 2022/3/15 * @Version V1.0 **/ public interface FundSchemeMapper { /** * 根据员工id获取 * @param employeeId * @return */ List getFundByEmployeeId(@Param("employeeIds")List employeeId); /** * 批量删除 * @param singletonList */ void batchDeleteByEmployeeIds(@Param("employeeIds") Collection singletonList); /** * 批量保存 * @param singletonList */ void batchSave(@Param("fundSchemePOS") List singletonList); }