mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-06-22 11:52:43 +08:00
19 lines
447 B
Java
19 lines
447 B
Java
package xyz.playedu.api.mapper;
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import xyz.playedu.api.domain.AdminUser;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
|
@Mapper
|
|
/**
|
|
* @author tengteng
|
|
* @description 针对表【admin_users】的数据库操作Mapper
|
|
* @createDate 2023-02-11 10:58:52
|
|
* @Entity xyz.playedu.api.domain.AdminUser
|
|
*/ public interface AdminUserMapper extends BaseMapper<AdminUser> {
|
|
}
|
|
|
|
|
|
|
|
|