2022-03-16 17:04:21 +08:00
|
|
|
package com.engine.salary.mapper.siarchives;
|
2022-03-15 17:39:19 +08:00
|
|
|
|
2022-03-18 18:00:51 +08:00
|
|
|
import com.engine.salary.entity.siarchives.param.InsuranceArchivesListParam;
|
|
|
|
|
import com.engine.salary.entity.siarchives.po.InsuranceArchivesEmployeePO;
|
2022-03-15 17:39:19 +08:00
|
|
|
import com.engine.salary.entity.siarchives.po.InsuranceArchivesSocialSchemePO;
|
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
2022-03-16 18:26:49 +08:00
|
|
|
import java.util.Collection;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
2022-03-15 17:39:19 +08:00
|
|
|
/**
|
|
|
|
|
* @Author weaver_cl
|
|
|
|
|
* @Description: TODO
|
|
|
|
|
* @Date 2022/3/15
|
|
|
|
|
* @Version V1.0
|
|
|
|
|
**/
|
|
|
|
|
public interface SocialSchemeMapper {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 根据员工id获取
|
|
|
|
|
* @param employeeId
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2022-03-18 18:00:51 +08:00
|
|
|
List<InsuranceArchivesSocialSchemePO> getSocialByEmployeeId(@Param("employeeIds")List<Long> employeeId);
|
2022-03-16 18:26:49 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 批量删除
|
|
|
|
|
* @param singletonList
|
|
|
|
|
*/
|
|
|
|
|
void batchDeleteByEmployeeIds(@Param("employeeIds") Collection<Long> singletonList);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 批量保存
|
|
|
|
|
* @param singletonList
|
|
|
|
|
*/
|
2022-03-17 15:26:33 +08:00
|
|
|
void batchSave(@Param("socialSchemePOS") List<InsuranceArchivesSocialSchemePO> singletonList);
|
2022-03-18 18:00:51 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @param param
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
List<InsuranceArchivesEmployeePO> listPageEmployeePOS(@Param("param") InsuranceArchivesListParam param);
|
2022-03-21 16:13:08 +08:00
|
|
|
|
2022-03-22 19:47:46 +08:00
|
|
|
/**
|
|
|
|
|
* 信息提示
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
List<Long> tips();
|
2022-03-15 17:39:19 +08:00
|
|
|
}
|