mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-12-25 20:35:35 +08:00
21 lines
454 B
Java
21 lines
454 B
Java
package xyz.playedu.api.mapper;
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import xyz.playedu.api.domain.Department;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
|
/**
|
|
* @author tengteng
|
|
* @description 针对表【departments】的数据库操作Mapper
|
|
* @createDate 2023-02-19 12:19:45
|
|
* @Entity xyz.playedu.api.domain.Department
|
|
*/
|
|
@Mapper
|
|
public interface DepartmentMapper extends BaseMapper<Department> {
|
|
|
|
}
|
|
|
|
|
|
|
|
|