苍穹外卖--员工管理--编辑员工功能实现

This commit is contained in:
2025-11-10 13:50:08 +08:00
parent 7554054fe7
commit 1241b73752
5 changed files with 49 additions and 1 deletions

View File

@@ -29,4 +29,7 @@ public interface EmployeeMapper {
Page<Employee> pageQuery(EmployeePageQueryDTO employeePageQueryDTO);
void update(Employee employee);
@Select("select * from employee where id = #{id}")
Employee getById(Long id);
}