2022-03-16 17:04:21 +08:00
|
|
|
package com.engine.salary.mapper.siarchives;
|
2022-03-15 17:39:19 +08:00
|
|
|
|
|
|
|
|
import com.engine.salary.entity.siarchives.po.InsuranceArchivesFundSchemePO;
|
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Author weaver_cl
|
|
|
|
|
* @Description: TODO
|
|
|
|
|
* @Date 2022/3/15
|
|
|
|
|
* @Version V1.0
|
|
|
|
|
**/
|
|
|
|
|
public interface FundSchemeMapper {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 根据员工id获取
|
|
|
|
|
* @param employeeId
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
InsuranceArchivesFundSchemePO getFundByEmployeeId(@Param("employeeId")Long employeeId);
|
|
|
|
|
}
|