2022-06-29 09:11:45 +08:00
|
|
|
package com.engine.organization.mapper.hrmresource;
|
|
|
|
|
|
2022-06-30 16:22:57 +08:00
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
2022-06-29 09:11:45 +08:00
|
|
|
/**
|
|
|
|
|
* @description:
|
|
|
|
|
* @author:dxfeng
|
|
|
|
|
* @createTime: 2022/05/20
|
|
|
|
|
* @version: 1.0
|
|
|
|
|
*/
|
|
|
|
|
public interface HrmResourceMapper {
|
|
|
|
|
|
2022-06-30 16:22:57 +08:00
|
|
|
/**
|
|
|
|
|
* 获取最大ID
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2022-06-29 09:11:45 +08:00
|
|
|
Long getMaxId();
|
2022-06-30 16:22:57 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 根据ID查询姓名
|
|
|
|
|
*
|
|
|
|
|
* @param id
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
String getLastNameById(@Param("id") Long id);
|
2022-06-29 09:11:45 +08:00
|
|
|
}
|