17 lines
358 B
Kotlin
17 lines
358 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.Power
|
|
|
|
/**
|
|
* Power mapper
|
|
*
|
|
* @author FatttSnake, fatttsnake@gmail.com
|
|
* @since 1.0.0
|
|
* @see BaseMapper
|
|
* @see Power
|
|
*/
|
|
@Mapper
|
|
interface PowerMapper : BaseMapper<Power>
|