13 lines
315 B
Kotlin
13 lines
315 B
Kotlin
package top.fatweb.api.service.permission
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService
|
|
import top.fatweb.api.entity.permission.UserRole
|
|
|
|
/**
|
|
* User role intermediate service interface
|
|
*
|
|
* @author FatttSnake, fatttsnake@gmail.com
|
|
* @since 1.0.0
|
|
*/
|
|
interface IUserRoleService : IService<UserRole>
|