Add SysLog
This commit is contained in:
14
src/main/kotlin/top/fatweb/api/service/ISysLogService.kt
Normal file
14
src/main/kotlin/top/fatweb/api/service/ISysLogService.kt
Normal file
@@ -0,0 +1,14 @@
|
||||
package top.fatweb.api.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService
|
||||
import top.fatweb.api.entity.SysLog
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 系统日志表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @since 2023-10-18
|
||||
*/
|
||||
interface ISysLogService : IService<SysLog>
|
||||
@@ -0,0 +1,18 @@
|
||||
package top.fatweb.api.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
|
||||
import org.springframework.stereotype.Service
|
||||
import top.fatweb.api.entity.SysLog
|
||||
import top.fatweb.api.mapper.SysLogMapper
|
||||
import top.fatweb.api.service.ISysLogService
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 系统日志表 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @since 2023-10-18
|
||||
*/
|
||||
@Service
|
||||
class SysLogServiceImpl : ServiceImpl<SysLogMapper, SysLog>(), ISysLogService
|
||||
Reference in New Issue
Block a user