21 lines
469 B
Java
21 lines
469 B
Java
|
|
package com.engine.salary.mapper.archives;
|
||
|
|
|
||
|
|
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);
|
||
|
|
}
|