Add SysLog

This commit is contained in:
2023-10-18 01:47:42 +08:00
parent 0efbdde2a7
commit 63daa8d801
7 changed files with 222 additions and 1 deletions

View 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>

View File

@@ -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