苍穹外卖初始化代码

This commit is contained in:
2025-11-03 15:28:30 +08:00
commit 8af1d5503a
94 changed files with 3203 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package com.sky.mapper;
import com.sky.entity.Employee;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
@Mapper
public interface EmployeeMapper {
/**
* 根据用户名查询员工
* @param username
* @return
*/
@Select("select * from employee where username = #{username}")
Employee getByUsername(String username);
}