package com.engine.salary.mapper.siarchives; import com.engine.salary.entity.siarchives.po.InsuranceArchivesEmployeePO; 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 * * @Date 2022/3/15 * @Version V1.0 **/ public interface FundSchemeMapper { /** * 根据员工id获取 * @param employeeId * @return */ List getFundByEmployeeId(@Param("employeeIds")List employeeId); /** * 根据人员id和个税扣缴人id获取记录 * @param insuranceArchivesEmployeePO * @return */ List getFundByEmployeeIdAndPayOrg(@Param("param") InsuranceArchivesEmployeePO insuranceArchivesEmployeePO); /** * 根据ids获取多条 * @param ids * @return */ List getFundById(@Param("ids")List ids); /** * 根据id获取单条 * @param id * @return */ InsuranceArchivesFundSchemePO getOneById(@Param("id")Long id); /** * 批量删除 * @param singletonList */ void batchDeleteByEmployeeIds(@Param("employeeIds") Collection singletonList); /** * 根据人员id和个税扣缴义务人删除档案 * @param insuranceArchivesFundSchemePO */ void deleteByEmployeeIdAndPayOrg(@Param("param") InsuranceArchivesFundSchemePO insuranceArchivesFundSchemePO); /** * 批量保存 * @param singletonList */ void batchSave(@Param("fundSchemePOS") List singletonList); List listAll(); int batchUpdate(@Param("collection") List pos); /** * 批量更新最后缴纳月 * @param ids * @param endTime */ void batchUpdateEndTime(@Param("ids")List ids, @Param("endTime")String endTime); int updateById(InsuranceArchivesFundSchemePO insuranceArchivesFundSchemePO); /** * 批量更新最后缴纳月为null * @param ids */ void batchUpdateEndTimeToNull(@Param("ids")List ids); /** * 根据id删除 * @param fundArchiveDelIds */ void deleteByIds(@Param("ids")List fundArchiveDelIds); /** * 新增 * @param insuranceArchivesFundSchemePO */ void insert(InsuranceArchivesFundSchemePO insuranceArchivesFundSchemePO); }