Complete core functions #9

Merged
FatttSnake merged 171 commits from FatttSnake into dev 2024-02-23 11:56:35 +08:00
4 changed files with 7 additions and 8 deletions
Showing only changes of commit 087e6ae8c3 - Show all commits

View File

@@ -1,4 +1,4 @@
package top.fatweb.api.controller.system;
package top.fatweb.api.controller.system
import io.swagger.v3.oas.annotations.Operation
import io.swagger.v3.oas.annotations.tags.Tag

View File

@@ -1,8 +1,8 @@
package top.fatweb.api.mapper.system;
package top.fatweb.api.mapper.system
import top.fatweb.api.entity.system.SysLog;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import top.fatweb.api.entity.system.SysLog
import com.baomidou.mybatisplus.core.mapper.BaseMapper
import org.apache.ibatis.annotations.Mapper
/**
* <p>

View File

@@ -1,4 +1,4 @@
package top.fatweb.api.service.system;
package top.fatweb.api.service.system
import com.baomidou.mybatisplus.core.metadata.IPage
import com.baomidou.mybatisplus.extension.service.IService

View File

@@ -1,7 +1,6 @@
package top.fatweb.api.service.system.impl;
package top.fatweb.api.service.system.impl
import com.baomidou.mybatisplus.core.metadata.IPage
import com.baomidou.mybatisplus.core.toolkit.Wrappers
import com.baomidou.mybatisplus.extension.kotlin.KtQueryWrapper
import com.baomidou.mybatisplus.extension.plugins.pagination.Page
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl