2022-03-16 17:04:21 +08:00
|
|
|
package com.engine.salary.mapper.siarchives;
|
2022-03-15 17:39:19 +08:00
|
|
|
|
2022-10-26 18:51:36 +08:00
|
|
|
import com.engine.salary.entity.siarchives.po.InsuranceArchivesEmployeePO;
|
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
|
2022-07-13 11:45:16 +08:00
|
|
|
*
|
2022-03-15 17:39:19 +08:00
|
|
|
* @Date 2022/3/15
|
|
|
|
|
* @Version V1.0
|
|
|
|
|
**/
|
|
|
|
|
public interface FundSchemeMapper {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 根据员工id获取
|
|
|
|
|
* @param employeeId
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2022-03-18 18:00:51 +08:00
|
|
|
List<InsuranceArchivesFundSchemePO> getFundByEmployeeId(@Param("employeeIds")List<Long> employeeId);
|
2022-03-17 15:26:33 +08:00
|
|
|
|
2022-10-26 18:51:36 +08:00
|
|
|
/**
|
|
|
|
|
* 根据人员id和个税扣缴人id获取记录
|
|
|
|
|
* @param insuranceArchivesEmployeePO
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
List<InsuranceArchivesFundSchemePO> getFundByEmployeeIdAndPayOrg(@Param("param") InsuranceArchivesEmployeePO insuranceArchivesEmployeePO);
|
|
|
|
|
|
|
|
|
|
|
2022-10-14 14:31:09 +08:00
|
|
|
/**
|
2022-12-07 17:09:53 +08:00
|
|
|
* 根据ids获取多条
|
2022-10-14 14:31:09 +08:00
|
|
|
* @param ids
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
List<InsuranceArchivesFundSchemePO> getFundById(@Param("ids")List<Long> ids);
|
|
|
|
|
|
2022-12-07 17:09:53 +08:00
|
|
|
/**
|
|
|
|
|
* 根据id获取单条
|
|
|
|
|
* @param id
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
InsuranceArchivesFundSchemePO getOneById(@Param("id")Long id);
|
|
|
|
|
|
2022-03-17 15:26:33 +08:00
|
|
|
/**
|
|
|
|
|
* 批量删除
|
|
|
|
|
* @param singletonList
|
|
|
|
|
*/
|
|
|
|
|
void batchDeleteByEmployeeIds(@Param("employeeIds") Collection<Long> singletonList);
|
|
|
|
|
|
2022-10-26 15:08:17 +08:00
|
|
|
/**
|
|
|
|
|
* 根据人员id和个税扣缴义务人删除档案
|
|
|
|
|
* @param insuranceArchivesFundSchemePO
|
|
|
|
|
*/
|
|
|
|
|
void deleteByEmployeeIdAndPayOrg(@Param("param") InsuranceArchivesFundSchemePO insuranceArchivesFundSchemePO);
|
2022-03-17 15:26:33 +08:00
|
|
|
/**
|
|
|
|
|
* 批量保存
|
|
|
|
|
* @param singletonList
|
|
|
|
|
*/
|
|
|
|
|
void batchSave(@Param("fundSchemePOS") List<InsuranceArchivesFundSchemePO> singletonList);
|
|
|
|
|
|
2022-10-10 09:43:57 +08:00
|
|
|
List<InsuranceArchivesFundSchemePO> listAll();
|
|
|
|
|
|
|
|
|
|
int batchUpdate(@Param("collection") List<InsuranceArchivesFundSchemePO> pos);
|
|
|
|
|
|
2022-10-13 14:45:18 +08:00
|
|
|
/**
|
|
|
|
|
* 批量更新最后缴纳月
|
2022-10-13 16:04:54 +08:00
|
|
|
* @param ids
|
2022-10-13 14:45:18 +08:00
|
|
|
* @param endTime
|
|
|
|
|
*/
|
2022-10-13 16:04:54 +08:00
|
|
|
void batchUpdateEndTime(@Param("ids")List<Long> ids, @Param("endTime")String endTime);
|
2022-10-18 15:33:27 +08:00
|
|
|
|
|
|
|
|
int updateById(InsuranceArchivesFundSchemePO insuranceArchivesFundSchemePO);
|
2022-12-12 15:43:12 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 批量更新最后缴纳月为null
|
|
|
|
|
* @param ids
|
|
|
|
|
*/
|
|
|
|
|
void batchUpdateEndTimeToNull(@Param("ids")List<Long> ids);
|
2023-06-29 10:35:55 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 根据id删除
|
|
|
|
|
* @param fundArchiveDelIds
|
|
|
|
|
*/
|
|
|
|
|
void deleteByIds(@Param("ids")List<Long> fundArchiveDelIds);
|
2023-07-24 16:39:48 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 新增
|
|
|
|
|
* @param insuranceArchivesFundSchemePO
|
|
|
|
|
*/
|
|
|
|
|
void insert(InsuranceArchivesFundSchemePO insuranceArchivesFundSchemePO);
|
2022-03-15 17:39:19 +08:00
|
|
|
}
|