weaver-hrm-organization/src/com/engine/organization/mapper/employee/EmployeeMapper.java

16 lines
278 B
Java
Raw Normal View History

2022-05-20 15:00:03 +08:00
package com.engine.organization.mapper.employee;
import org.apache.ibatis.annotations.Param;
/**
* @Author weaver_cl
2022-06-14 11:07:48 +08:00
* @description:
2022-05-20 15:00:03 +08:00
* @Date 2022/5/20
* @Version V1.0
**/
public interface EmployeeMapper {
String getEmployeeNameById(@Param("employeeId") Long id);
}