没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
使用idea工具,新建springboot项目,内建vue模块。如图
1、新建系统
虾米大王教你学编程
虾米大王教你学编程
2、数据库
drop table if exists aj_user;1
create table aj_user(2
id int not null auto_increment primary key comment '主键id',3
username varchar(50) not null unique comment '用户名',4
password varchar(255) not null comment '密码',5
email varchar(50) default null comment '电子邮件',6
虾米大王教你学编程
phone varchar(50) default null comment '电话',7
status tinyint default null comment '状态,1启用,0禁用',8
avatar varchar(255) default null comment '头像',9
is_deleted tinyint default 0 comment '是否删除,1删除,0正常'10
) comment '用户表';11
insert into aj_user values(1,'admin','1234','xx@xx.com','13899008801',1,'',0);12
13
drop table if exists aj_role;14
create table aj_role(15
id int not null auto_increment primary key comment '主键id',16
role_name varchar(50) not null unique comment '角色名称',17
role_desc varchar(100) default null comment '描述',18
is_deleted tinyint default 0 comment '是否删除,1删除,0正常'19
) comment '角色表';20
insert into aj_role values(1,'admin','超级管理员',0);21
insert into aj_role values(2,'hr','人事专员',0);22
insert into aj_role values(3,'normal','普通员工',0);23
24
drop table if exists aj_user_role;25
create table aj_user_role(26
id int not null auto_increment primary key comment '主键id',27
user_id int not null comment '用户id',28
role_id int not null comment '角色id'29
) comment '用户角色关系表';30
insert into aj_user_role values (1,1,1);31
32
drop table if exists aj_role_menu;33
create table aj_role_menu(34
id int not null auto_increment primary key comment '主键id',35
role_id int not null comment '角色id',36
menu_id int not null comment '菜单id'37
) comment '角色菜单表';38
insert into aj_role_menu values (1,1,1);39
insert into aj_role_menu values (2,1,2);40
insert into aj_role_menu values (3,1,3);41
insert into aj_role_menu values (4,1,4);42
insert into aj_role_menu values (5,1,5);43
insert into aj_role_menu values (6,1,6);44
insert into aj_role_menu values (7,1,7);45
46
虾米大王教你学编程
剩余167页未读,继续阅读
资源评论
虾米大王
- 粉丝: 1646
- 资源: 94
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- HTML5实现趣味飞船捡金币小游戏源码
- java项目,课程设计-#ssm-mysql-记账管理系统.zip
- 技术资料分享使用SAM-BA更新jlink固件很好的技术资料.zip
- 阿里的sentinel(限流、降级熔断)学习源码
- chromedriver-win64-122版本所有资源打包下载
- Http自动发送请求软件(自动化测试http请求)
- chromedriver-win64-121版本所有资源打包下载
- C语言《基于STC8A8K64D4的AD电压表及温度计的设计与实现》+项目源码+文档说明
- java项目,课程设计-#-ssm-mysql-在线物业管理系统.zip
- 技术资料分享任天堂产品系统文件很好的技术资料.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功