mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-06-23 12:32:41 +08:00
16 lines
401 B
Java
16 lines
401 B
Java
package xyz.playedu.api.service;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
import xyz.playedu.api.domain.AdminLog;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
/**
|
|
* @author tengteng
|
|
* @description 针对表【admin_logs】的数据库操作Service
|
|
* @createDate 2023-02-17 15:40:31
|
|
*/
|
|
@Service
|
|
public interface AdminLogService extends IService<AdminLog> {
|
|
|
|
}
|