目录结构

kunpeng项目根目录
├── kunpeng-gateway  # 网关项目
│   ├── com.kunpeng.framework  
│   │   ├── GatewayApplication 启动文件
│   ├── resources  
│   │   ├── bootstrap.yml 切换不同环境的配置文件
│   │   ├── bootstrap-dev.yml 开发环境配置文件
├── kunpeng-auth  # 鉴权项目
│   ├── com.kunpeng.framework
│   │   ├── api 对外接口存放地方  
│   │   ├── common 存放系统公共文件 
│   │   │   ├── cache 缓存文件 
│   │   │   ├── properties 读取ymml|nacos 配置文件 
│   │   │   ├── rabbitmq rabbitmq消费
│   │   ├── config 当前项目配置文件 
│   │   ├── modules 项目功能模块代码 
│   │   │   ├── data 下拉框接口 
│   │   │   ├── dept 部门模块相关接口代码 
│   │   │   ├── logRecord 日志记录模块相关接口代码 
│   │   │   ├── menu 菜单模块相关接口代码 
│   │   │   ├── post 岗位模块相关接口代码 
│   │   │   ├── project 项目模块相关接口代码
│   │   │   ├── role 角色模块相关接口代码 
│   │   │   ├── user 用户模块相关接口代码
│   │   │   ├── welcome 欢迎页面相关接口代码
│   │   ├── AuthenticationApplication 启动文件  
├── kunpeng-common  # 系统共用配置
│   ├── framework-core 框架核心模块
│   │   │── com.kunpeng.framework
│   │   │   ├── annotation 框架自定义扩展注解
│   │   │   ├── configruation 框架配置信息
│   │   │   ├── constant 框架常量配置
│   │   │   ├── controller 框架内置的接口
│   │   │   ├── entity 框架内置实体类
│   │   │   ├── enums 框架内置枚举类
│   │   │   ├── exception 自定义异常和全局异常处理
│   │   │   ├── listener 框架监听器
│   │   │   ├── mapper mybatisPlusMapper控制信息
│   │   │   ├── transactiona 全局异常处理器
│   │   │   ├── utils 框架内置工具类
│   │   │   │   ├── kptool 鲲鹏工具封装类
│   ├── framework-security 框架权限模块
│   │   │── com.kunpeng.framework
│   │   │   ├── common 公共文件 
│   │   │   │   ├── annotation 数据权限自定义注解
│   │   │   │   ├── enums 枚举
│   │   │   │   ├── parent 父类
│   │   │   │   ├── properties 读取ymml|nacos 配置文件 
│   │   │   │   ├── security 权限模块
│   │   │   ├── config 配置信息 
├────────────── modules 模块功能