1、修改代码生成配置 单应用编辑 多模块编辑ruoyi-generator
中的resources
目录下的generator.yml
author
: # 开发者姓名,生成到类注释上 packageName
: # 默认生成包路径 : # 是否自动去除表前缀 tablePrefix
: # 表前缀
2、新建数据库表结构(树表)
drop table if exists sys_product;
create table sys_product (
parent_id bigint(20) default 0 comment '父产品id',
status char(1) default '0' comment '产品状态(0正常 1停用)',
primary key (product_id)
3、登录系统(系统工具 -> 代码生成 -> 导入对应表)
5、点击生成代码会得到一个ruoyi.zip 执行sql
文件,覆盖文件到对应目录即可
多模块所有代码生成的相关业务逻辑代码在模块,可以自行调整或剔除