1、在数据库新建一个表
drop table if exists sys_student;
create table sys_student (
student_id int(11) auto_increment comment '编号',
student_name varchar(30) default '' comment '学生名称',
student_age int(3) default null comment '年龄',
student_hobby varchar(30) default '' comment '爱好(0代码 1音乐 2电影)',
student_sex char(1) default '0' comment '性别(0男 1女 2未知)',
student_status char(1) default '0' comment '状态(0正常 1停用)',
student_birthday datetime comment '生日',
primary key (student_id)
) engine=innodb auto_increment=1 comment = '学生信息表';
2、登录系统(系统工具 -> 代码生成 -> 导入对应表)
3、代码生成列表中找到需要表(可预览、修改、删除生成配置)
4、点击生成代码会得到一个ruoyi.zip 执行sql文件,按照包内目录结构复制到自己的项目中即可
5、main中其他的代码按目录结构粘在对应位置
注意:
(1)除了ruoyi\main\java\com\ruoyi\system\controller中的java文件放在admin的controller文件夹中,其他的都放在ruoyi-system文件夹对应位置即可。
(2)ruoyi\main\resources\templates里面的放在ruoyi-admin中的templates中
ruoyi\main\resources\mapper放在ruoyi-system的mapper的文件夹中
版权声明:本文为qq_43691113原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。