springboot+vue+mybatisplus项目实战-学生成绩管理系统20
  px8Y25gMnWbQ 2023年12月07日 54 0


数据库

drop table if exists am_user;
create table am_user(
	id bigint not null auto_increment primary key comment '主键id',
	user_name varchar(50) not null comment '用户名',
	pwd varchar(50) not null comment '密码',
	is_deleted tinyint default 0 comment '是否删除,1删除,0正常'
) comment '用户表';
insert into am_user values (1,'admin','1234',0);

drop table if exists am_student;
create table am_student(
	id bigint not null auto_increment primary key comment '主键id',
	number varchar(50) not null comment '学号,因为使用软删除,所以未设置唯一键索引',
	real_name varchar(50) not null comment '姓名',
	enroll_time datetime not null default CURRENT_TIMESTAMP comment '入学日期',
	is_deleted tinyint default 0 comment '是否删除,1删除,0正常'
) comment '学生表';
insert into am_student values (1,'001','张三','2023-01-01',0);

drop table if exists am_score;
create table am_score(
	id bigint not null auto_increment primary key comment '主键id',
	student_id bigint not null comment '学生id',
	exam_name varchar(100) not null comment '考试名称',
	score_cn decimal(5,2) default 0 comment '语文成绩',
	score_en decimal(5,2) default 0 comment '英语成绩',
	score_math decimal(5,2) default 0 comment '数学成绩',
	is_deleted tinyint default 0 comment '是否删除,1删除,0正常'
) comment '成绩表';
insert into am_score values(1,1,'摸底考试',99,99,99,0);

测试

登录

springboot+vue+mybatisplus项目实战-学生成绩管理系统20_主键

 首页

springboot+vue+mybatisplus项目实战-学生成绩管理系统20_用户名_02

 学生管理

springboot+vue+mybatisplus项目实战-学生成绩管理系统20_spring boot_03

 成绩管理

 

springboot+vue+mybatisplus项目实战-学生成绩管理系统20_用户名_04

新增学生

springboot+vue+mybatisplus项目实战-学生成绩管理系统20_spring boot_05

编辑学生

springboot+vue+mybatisplus项目实战-学生成绩管理系统20_vue.js_06

新增成绩

springboot+vue+mybatisplus项目实战-学生成绩管理系统20_后端_07

编辑成绩

springboot+vue+mybatisplus项目实战-学生成绩管理系统20_后端_08

退出

springboot+vue+mybatisplus项目实战-学生成绩管理系统20_后端_09

以上就是本系统的全部代码。

希望对各位有帮助。

【版权声明】本文内容来自摩杜云社区用户原创、第三方投稿、转载,内容版权归原作者所有。本网站的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@moduyun.com

  1. 分享:
最后一次编辑于 2023年12月07日 0

暂无评论

推荐阅读
px8Y25gMnWbQ