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

20 lines
370 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;
2022-10-24 19:25:55 +08:00
import java.util.List;
2022-05-20 15:00:03 +08:00
/**
* @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);
2022-10-24 19:25:55 +08:00
List<Long> getResourceIds(@Param("lastName") String lastName);
2022-05-20 15:00:03 +08:00
}