Update doc
This commit is contained in:
@@ -8,7 +8,7 @@ import top.fatweb.api.vo.permission.TokenVo
|
||||
/**
|
||||
* Authentication service interface
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
interface IAuthenticationService {
|
||||
|
||||
@@ -6,7 +6,7 @@ import top.fatweb.api.entity.permission.Element
|
||||
/**
|
||||
* Element service interface
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
interface IElementService : IService<Element>
|
||||
|
||||
@@ -10,7 +10,7 @@ import top.fatweb.api.vo.permission.GroupWithRoleVo
|
||||
/**
|
||||
* Group service interface
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
interface IGroupService : IService<Group> {
|
||||
|
||||
@@ -6,7 +6,7 @@ import top.fatweb.api.entity.permission.Menu
|
||||
/**
|
||||
* Menu service interface
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
interface IMenuService : IService<Menu>
|
||||
|
||||
@@ -6,7 +6,7 @@ import top.fatweb.api.entity.permission.Module
|
||||
/**
|
||||
* Module service interface
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
interface IModuleService : IService<Module>
|
||||
|
||||
@@ -6,7 +6,7 @@ import top.fatweb.api.entity.permission.Operation
|
||||
/**
|
||||
* Operation service interface
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
interface IOperationService : IService<Operation>
|
||||
|
||||
@@ -6,7 +6,7 @@ import top.fatweb.api.entity.permission.PowerRole
|
||||
/**
|
||||
* Power role intermediate service interface
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
interface IPowerRoleService : IService<PowerRole>
|
||||
|
||||
@@ -7,7 +7,7 @@ import top.fatweb.api.vo.permission.PowerSetVo
|
||||
/**
|
||||
* Power service interface
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
interface IPowerService : IService<Power> {
|
||||
|
||||
@@ -6,7 +6,7 @@ import top.fatweb.api.entity.permission.RoleGroup
|
||||
/**
|
||||
* Role group intermediate service interface
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
interface IRoleGroupService : IService<RoleGroup>
|
||||
|
||||
@@ -10,7 +10,7 @@ import top.fatweb.api.vo.permission.RoleWithPowerVo
|
||||
/**
|
||||
* Role service interface
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
interface IRoleService : IService<Role> {
|
||||
|
||||
@@ -6,7 +6,7 @@ import top.fatweb.api.entity.permission.UserGroup
|
||||
/**
|
||||
* User group intermediate service interface
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
interface IUserGroupService : IService<UserGroup>
|
||||
|
||||
@@ -6,7 +6,7 @@ import top.fatweb.api.entity.permission.UserInfo
|
||||
/**
|
||||
* User information service interface
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
interface IUserInfoService : IService<UserInfo>
|
||||
|
||||
@@ -6,7 +6,7 @@ import top.fatweb.api.entity.permission.UserRole
|
||||
/**
|
||||
* User role intermediate service interface
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
interface IUserRoleService : IService<UserRole>
|
||||
|
||||
@@ -6,7 +6,7 @@ import top.fatweb.api.entity.permission.User
|
||||
/**
|
||||
* User service interface
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
interface IUserService : IService<User> {
|
||||
|
||||
@@ -24,7 +24,7 @@ import java.time.ZoneOffset
|
||||
/**
|
||||
* Authentication service implement
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
@Service
|
||||
|
||||
@@ -9,7 +9,7 @@ import top.fatweb.api.service.permission.IElementService
|
||||
/**
|
||||
* Element service implement
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
@Service
|
||||
|
||||
@@ -20,7 +20,7 @@ import top.fatweb.api.vo.permission.GroupWithRoleVo
|
||||
/**
|
||||
* Group service implement
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
@Service
|
||||
|
||||
@@ -9,7 +9,7 @@ import top.fatweb.api.service.permission.IMenuService
|
||||
/**
|
||||
* Menu service implement
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
@Service
|
||||
|
||||
@@ -9,7 +9,7 @@ import top.fatweb.api.service.permission.IModuleService
|
||||
/**
|
||||
* Module service implement
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
@Service
|
||||
|
||||
@@ -9,7 +9,7 @@ import top.fatweb.api.service.permission.IOperationService
|
||||
/**
|
||||
* Operation service implement
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
@Service
|
||||
|
||||
@@ -9,7 +9,7 @@ import top.fatweb.api.service.permission.IPowerRoleService
|
||||
/**
|
||||
* Power role intermediate service implement
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
@Service
|
||||
|
||||
@@ -11,7 +11,7 @@ import top.fatweb.api.service.permission.*
|
||||
/**
|
||||
* Power service implement
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
@Service
|
||||
|
||||
@@ -9,7 +9,7 @@ import top.fatweb.api.service.permission.IRoleGroupService
|
||||
/**
|
||||
* Role group intermediate service implement
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
@Service
|
||||
|
||||
@@ -22,7 +22,7 @@ import top.fatweb.api.vo.permission.RoleWithPowerVo
|
||||
/**
|
||||
* Role service implement
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
@Service
|
||||
|
||||
@@ -9,7 +9,7 @@ import top.fatweb.api.service.permission.IUserService
|
||||
/**
|
||||
* User details service implement
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
@Service
|
||||
|
||||
@@ -9,7 +9,7 @@ import top.fatweb.api.service.permission.IUserGroupService
|
||||
/**
|
||||
* User group intermediate service implement
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
@Service
|
||||
|
||||
@@ -9,7 +9,7 @@ import top.fatweb.api.service.permission.IUserInfoService
|
||||
/**
|
||||
* User information service implement
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
@Service
|
||||
|
||||
@@ -9,7 +9,7 @@ import top.fatweb.api.service.permission.IUserRoleService
|
||||
/**
|
||||
* User role intermediate service implement
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
@Service
|
||||
|
||||
@@ -10,7 +10,7 @@ import top.fatweb.api.util.WebUtil
|
||||
/**
|
||||
* User service implement
|
||||
*
|
||||
* @author FatttSnake
|
||||
* @author FatttSnake, fatttsnake@gmail.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
@Service
|
||||
|
||||
Reference in New Issue
Block a user