Add SysLog
This commit is contained in:
16
src/main/kotlin/top/fatweb/api/mapper/SysLogMapper.kt
Normal file
16
src/main/kotlin/top/fatweb/api/mapper/SysLogMapper.kt
Normal file
@@ -0,0 +1,16 @@
|
||||
package top.fatweb.api.mapper;
|
||||
|
||||
import top.fatweb.api.entity.SysLog;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 系统日志表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @since 2023-10-18
|
||||
*/
|
||||
@Mapper
|
||||
interface SysLogMapper : BaseMapper<SysLog>
|
||||
Reference in New Issue
Block a user