-
Notifications
You must be signed in to change notification settings - Fork 721
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🚀 需求墙-你最期望的功能或模块是什么?投票中... ⚡️ #17
Comments
期望的其它功能,请在下面回复!⭐️ 😃 |
多数据源支持 |
生成代码时支持批量生成多表/全表 |
权限,工具流,邮件,登录方式(微信,支付宝等) |
希望尽快接入用户菜单权限日志等系统管理模块,开发痛点,让人不能专注于业务开发,刚入职新项目,浪费了些时间在这上面,这块我已借鉴了xboot的,jeecg也看了,不过太臃肿且需引入私服jar包不喜,接下来项目需要用到websevice及工作流,及小程序登录绑定等。。建议完善权限菜单模块及Auth第三方登录认证,其它随意。。。第一次用springboot,mybaits,这样刚起步很纯净的脚手架很喜欢,会持续关注一起成长。 |
感谢你的关注和支持!用户角色权限控制等功能正在开发中,下个大版本会发布! |
请问大概多久发布呢? |
/**
* 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();
}
}
} |
v1.4.0 已完善用户角色权限管理功能 |
excel导入导出,微信支付宝支付,权限加入用户组, |
期待模块化 |
多数据源支持 |
期待能有一个独立于业务的流程模块 |
任务流 |
不更新了么 老铁是不是升职了。。。。 |
[希望增加给角色配置数据权限的功能,可配置个人,部门,本部门,及自定义部门的数据权限 |
The text was updated successfully, but these errors were encountered: