17 lines
357 B
Kotlin
17 lines
357 B
Kotlin
package top.fatweb.api.mapper.permission
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper
|
|
import org.apache.ibatis.annotations.Mapper
|
|
import top.fatweb.api.entity.permission.Func
|
|
|
|
/**
|
|
* Function mapper
|
|
*
|
|
* @author FatttSnake, fatttsnake@gmail.com
|
|
* @since 1.0.0
|
|
* @see BaseMapper
|
|
* @see Func
|
|
*/
|
|
@Mapper
|
|
interface FuncMapper : BaseMapper<Func>
|