package com.engine.organization.mapper.employee; import org.apache.ibatis.annotations.Param; /** * @Author weaver_cl * @description: * @Date 2022/5/20 * @Version V1.0 **/ public interface EmployeeMapper { String getEmployeeNameById(@Param("employeeId") Long id); }