Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

🚀 需求墙-你最期望的功能或模块是什么?投票中... ⚡️ #17

Open
springboot-plus opened this issue Aug 7, 2019 · 16 comments
Labels

Comments

@springboot-plus
Copy link
Collaborator

springboot-plus commented Aug 7, 2019










@polls polls bot added the Polls label Aug 7, 2019
@springboot-plus
Copy link
Collaborator Author

期望的其它功能,请在下面回复!⭐️ 😃

@WesleyOne
Copy link

多数据源支持

@lifeorwar
Copy link

生成代码时支持批量生成多表/全表

@BlueBlackR9
Copy link

权限,工具流,邮件,登录方式(微信,支付宝等)

@BojackFang
Copy link

希望尽快接入用户菜单权限日志等系统管理模块,开发痛点,让人不能专注于业务开发,刚入职新项目,浪费了些时间在这上面,这块我已借鉴了xboot的,jeecg也看了,不过太臃肿且需引入私服jar包不喜,接下来项目需要用到websevice及工作流,及小程序登录绑定等。。建议完善权限菜单模块及Auth第三方登录认证,其它随意。。。第一次用springboot,mybaits,这样刚起步很纯净的脚手架很喜欢,会持续关注一起成长。

@springboot-plus
Copy link
Collaborator Author

springboot-plus commented Sep 8, 2019

感谢你的关注和支持!用户角色权限控制等功能正在开发中,下个大版本会发布!

@Expacted
Copy link

感谢你的关注和支持!用户角色权限控制等功能正在开发中,下个大版本会发布!

请问大概多久发布呢?

@springboot-plus
Copy link
Collaborator Author

生成代码时支持批量生成多表/全表

  • 现已支持同时生成多张表代码
  • SpringBootPlusGenerator.java
/**
 * spring-boot-plus代码生成器入口类
 *
 * @author geekidea
 * @date 2019-10-22
 **/
public class SpringBootPlusGenerator {

    public static void main(String[] args) {
        CodeGenerator codeGenerator = new CodeGenerator();
        // 公共配置
        // 数据库配置
        codeGenerator
                .setUserName("root")
                .setPassword("root")
                .setDriverName("com.mysql.jdbc.Driver")
                .setDriverUrl("jdbc:mysql://localhost:3306/spring_boot_plus?useUnicode=true&characterEncoding=UTF-8&useSSL=false");

        // 包信息
        codeGenerator
                .setProjectPackagePath("io/geekidea/springbootplus")
                .setParentPackage("io.geekidea.springbootplus");

        // 组件作者等配置
        codeGenerator
                .setModuleName("system")
                .setAuthor("geekidea")
                .setPkIdColumnName("id");

        // 初始化公共变量
        codeGenerator.init();

        // 表配置
        String[] tables = {"sys_role", "sys_user_role", "sys_permission", "sys_role_permission"};
        for (String table : tables) {
            codeGenerator.setTableName(table);
            // 生成代码
            codeGenerator.generator();
        }

    }

}

@springboot-plus
Copy link
Collaborator Author

v1.4.0 已完善用户角色权限管理功能
https://github.com/geekidea/spring-boot-plus/releases/tag/V1.4.0

@alibabacoder
Copy link

excel导入导出,微信支付宝支付,权限加入用户组,

@zz99132242
Copy link

期待模块化

@iaptx4869
Copy link

多数据源支持

@hjx123
Copy link

hjx123 commented Jun 3, 2020

期待能有一个独立于业务的流程模块

@chenzhenguo
Copy link

任务流

@zhengycsh
Copy link

不更新了么 老铁是不是升职了。。。。

@ixuranran
Copy link

[希望增加给角色配置数据权限的功能,可配置个人,部门,本部门,及自定义部门的数据权限

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
Projects
None yet
Development

No branches or pull requests