21 lines
475 B
Java
21 lines
475 B
Java
package com.engine.salary.mapper.siarchives;
|
|
|
|
import com.engine.salary.entity.siarchives.po.InsuranceArchivesOtherSchemePO;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
/**
|
|
* @Author weaver_cl
|
|
* @Description: TODO
|
|
* @Date 2022/3/15
|
|
* @Version V1.0
|
|
**/
|
|
public interface OtherSchemeMapper {
|
|
|
|
/**
|
|
* 根据员工id获取
|
|
* @param employeeId
|
|
* @return
|
|
*/
|
|
InsuranceArchivesOtherSchemePO getOtherByEmployeeId(@Param("employeeId")Long employeeId);
|
|
}
|