feat: 用户管理模块开发

This commit is contained in:
2024-02-19 14:36:53 +08:00
parent 065ec97aa2
commit 04af7fca2a
98 changed files with 3258 additions and 97 deletions

View File

@@ -10,7 +10,7 @@ import org.springframework.context.annotation.Configuration;
/**
* 权限认证的配置器
*
* @author: ChickenWing
* @author: landaiqing
* @date: 2023/10/28
*/
@Configuration

View File

@@ -18,7 +18,7 @@ import java.util.stream.Collectors;
/**
* 自定义权限验证接口扩展
*
* @author: ChickenWing
* @author: landaiqing
* @date: 2023/10/28
*/
@Component

View File

@@ -6,7 +6,7 @@ import java.util.Date;
/**
* (AuthPermission)实体类
*
* @author makejava
* @author landaiqing
* @since 2023-11-03 00:45:50
*/
public class AuthPermission implements Serializable {

View File

@@ -6,8 +6,8 @@ import java.util.Date;
/**
* (AuthRole)实体类
*
* @author makejava
* @since 2023-11-02 23:55:19
* @author landaiqing
* @since 2024-2-18 18:55:50
*/
public class AuthRole implements Serializable {
private static final long serialVersionUID = 422256240999600735L;

View File

@@ -13,7 +13,7 @@ import java.util.stream.Stream;
/**
* RedisUtil工具类
*
* @author: ChickenWing
* @author: landaiqing
* @date: 2023/10/28
*/
@Component