38 lines
841 B
Java
38 lines
841 B
Java
package com.engine.salary.mapper.siarchives;
|
|
|
|
import com.engine.salary.entity.siarchives.po.InsuranceArchivesOtherSchemePO;
|
|
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 OtherSchemeMapper {
|
|
|
|
/**
|
|
* 根据员工id获取
|
|
* @param employeeId
|
|
* @return
|
|
*/
|
|
List<InsuranceArchivesOtherSchemePO> getOtherByEmployeeId(@Param("employeeIds")List<Long> employeeId);
|
|
|
|
/**
|
|
* 批量删除
|
|
* @param singletonList
|
|
*/
|
|
void batchDeleteByEmployeeIds(@Param("employeeIds") Collection<Long> singletonList);
|
|
|
|
/**
|
|
* 批量保存
|
|
* @param singletonList
|
|
*/
|
|
void batchSave(@Param("otherSchemePOS") List<InsuranceArchivesOtherSchemePO> singletonList);
|
|
|
|
|
|
}
|