package com.engine.salary.service; import com.engine.salary.entity.taxagent.param.TaxAgentEmpSaveParam; import com.engine.salary.entity.taxagent.po.TaxAgentEmpPO; import com.engine.salary.enums.datacollection.UseEmployeeTypeEnum; import java.util.Collection; import java.util.List; /** * 个税扣缴义务人管理范围的人员 *

Copyright: Copyright (c) 2022

*

Company: 泛微软件

* * @author qiantao * @version 1.0 **/ public interface TaxAgentEmpService{ /** * 根据个税扣缴义务人id删除管理范围的人员 * * @param taxAgentIds */ void deleteByTaxAgentIds(Collection taxAgentIds); /** * 根据个税扣缴义务人id获取管理范围中的人员 * * @param taxAgentIds * @return */ List listByTaxAgentIds(List taxAgentIds, UseEmployeeTypeEnum type); /** * 同步人员到本地关联表 * * @param taxAgentEmpSaveParamList * @param currentEmployeeId */ void syncTaxAgentEmployee(List taxAgentEmpSaveParamList, Long currentEmployeeId); /** * 同步外部人员 * @param taxAgentEmpSaveParamList * @param currentEmployeeId */ void syncTaxAgentExtEmployee(List taxAgentEmpSaveParamList, Long currentEmployeeId); }