15 lines
295 B
Kotlin
15 lines
295 B
Kotlin
package top.fatweb.api.service.permission
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService
|
|
import top.fatweb.api.entity.permission.Element
|
|
|
|
/**
|
|
* <p>
|
|
* 页面元素表 服务类
|
|
* </p>
|
|
*
|
|
* @author FatttSnake
|
|
* @since 2023-10-25
|
|
*/
|
|
interface IElementService : IService<Element>
|