基于springboot的在线课程管理系统的设计与实现

  其他源码获取可以看首页:代码老y

个人简介:专注于毕业设计项目定制开发:springboot+vue系统,Java微信小程序,javaSSM系统等技术开发,并提供远程调试部署、代码讲解、文档指导、ppt制作等技术指导。源码获取,毕设定制查看本人首页获取联系

技术范围:SpringBoot、Vue、SSM、Nodejs、小程序等设计与开发。
本人负责:系统功能设计、毕设开题报告的撰写、任务书的制定、中期检查PPT的制作、系统功能的具体实现、论文的撰写与辅导以及长期的答辩答疑辅导。

大家在毕设选题,项目以及论文编写等相关问题都可以和我沟通,我会尽自己所能给大家解答。

感兴趣的同学可在首页获取联系  

1、开发相关技术介绍

1.1 SpringBoot框架

    SpringBoot 是由 Pivotal 团队开发的开源 Java 基础框架,旨在简化 Spring 应用的初始搭建以及开发过程。它通过提供一系列的“Starters”来自动配置 Spring 及其集成的第三方库,极大地降低了开发者的配置难度。SpringBoot 应用通常可以独立运行,通常打包成 JAR 文件,内置了如 Tomcat、Jetty 或 Undertow 等 Web 服务器,无需外部 Servlet SpringBoot 提倡使用 Java 注解 来优化配置流程,简化了设置步骤。此外,它还包含了一些高级的监控和管控工具,特别是 Actuator 模块,它让开发者能够方便地追踪应用程序的运行状况和性能表现。这些特点使得 SpringBoot 成为开发微服务和云应用的优选,同样适用于企业级应用。

1.2 Vue框架

    Vue 是一款专为构建动态和响应式的用户界面而设计的渐进式前端框架。Vue 在与一些更为庞大和全面的框架相比之中以其轻量级和模块化的特性脱颖而出,它的核心专注于视图层的构建,这样降低学习曲线的同时也便于与现有的项目或库进行无缝集成。 Vue 的设计理念强调简洁性和实用性,使开发者可以逐步地将框架的功能集成到项目中,不管是构建小型的交互界面还是处理大型应用,Vue 均能提供强大的功能支持。这种灵活性和易用性使前端开发更加高效和灵活,也是 Vue 受到广泛欢迎的关键因素之一。

1.3 MySQL数据库

    MySQL 数据库是一个使用 SQL 作为查询语言的开源关系型数据库管理系统。这个系统一开始是 MySQL AB 公司所开发的,之后经历了 Sun Microsystems 的收购,最终成为 Oracle 公司旗下的产品。MySQL 因其出色的性能、可靠性和用户友好的特性而受到青睐,正因如此它也被广泛地应用于网站开发、数据存储解决方案和企业级软件系统中。它不但支持多种操作系统,而且还功能丰富且配置灵活,基本上都能满足从小型应用到大型数据仓库的需求,也正因如此是众多开发者和企业第一个选择的数据库解决方案。

2、数据库实体设计 

概念设计的目标是设计出反映某个组织部门信息需求的数据库系统概念模式,数据库系统的概念模式独立于数据库系统的逻辑结构、独立于数据库管理系统(DBMS)、独立于计算机系统。

概念模式的设计方法是在需求分析的基础上,用概念数据模型(例如E-R模型)表示数据及数据之间的相互联系,设计出反映用户信息需求和处理需求的数据库系统概念模式。概念设计的目标是准确描述应用领域的信息模式,支持用户的各种应用,这样既容易转换为数据库系统逻辑模式,又容易为用户理解。数据库系统概念模式是面向现实世界的数据模型,不能直接用于数据库系统的实现。在此阶段,用户可以参与和评价数据库系统的设计,从而有利于保证数据库系统的设计与用户的需求相吻合。在概念模式的设计中,E-R模型法是最常见的设计方法。本系统的E-R图如下图所示:

 (1)管理员信息的实体属性图如下: 

 

(2)科目类型信息实体属性图如下图所示: 

 

(3)校园资讯信息实体属性图如下图所示: 

 

  3、数据库表设计(展示部分表) 

表3.1 班级分类

字段

类型

默认

注释

id (主键)

bigint(20)

主键

addtime

timestamp

CURRENT_TIMESTAMP

创建时间

leixing

varchar(200)

NULL

类型

表3.2 在线课程评论表

字段

类型

默认

注释

id (主键)

bigint(20)

主键

addtime

timestamp

CURRENT_TIMESTAMP

创建时间

refid

bigint(20)

关联表id

userid

bigint(20)

用户id

nickname

varchar(200)

NULL

用户名

content

longtext

评论内容

reply

longtext

NULL

回复内容

表3.3 在线交流

字段

类型

默认

注释

id (主键)

bigint(20)

主键

addtime

timestamp

CURRENT_TIMESTAMP

创建时间

title

varchar(200)

NULL

帖子标题

content

longtext

帖子内容

parentid

bigint(20)

NULL

父节点id

userid

bigint(20)

用户id

username

varchar(200)

NULL

用户名

isdone

varchar(200)

NULL

状态

表3.4 教师用户

字段

类型

默认

注释

id (主键)

bigint(20)

主键

addtime

timestamp

CURRENT_TIMESTAMP

创建时间

jiaoshigonghao

varchar(200)

教师工号

mima

varchar(200)

密码

jiaoshixingming

varchar(200)

教师姓名

xingbie

varchar(200)

NULL

性别

suojiaobanji

varchar(200)

NULL

所教班级

suojiaokemu

varchar(200)

NULL

所教科目

lianxidianhua

varchar(200)

NULL

联系电话

shenfenzheng

varchar(200)

NULL

身份证

表3.5 教学计划

字段

类型

默认

注释

id (主键)

bigint(20)

主键

addtime

timestamp

CURRENT_TIMESTAMP

创建时间

kechengmingcheng

varchar(200)

NULL

课程名称

kemuleixing

varchar(200)

NULL

科目类型

jiaoxueneirong

longtext

NULL

教学内容

jiaoxuemubiao

longtext

NULL

教学目标

jiaoxuezhongdian

longtext

NULL

教学重点

kechenganpai

longtext

NULL

课程安排

jiaoshigonghao

varchar(200)

NULL

教师工号

jiaoshixingming

varchar(200)

NULL

教师姓名

表3.6 考试大纲

字段

类型

默认

注释

id (主键)

bigint(20)

主键

addtime

timestamp

CURRENT_TIMESTAMP

创建时间

kechengmingcheng

varchar(200)

NULL

课程名称

kemuleixing

varchar(200)

NULL

科目类型

kaodianneirong

longtext

NULL

考点内容

zhuyishixiang

longtext

NULL

注意事项

kaodianfenxi

longtext

NULL

考点分析

kechengtupian

varchar(200)

NULL

课程图片

jiaoshigonghao

varchar(200)

NULL

教师工号

jiaoshixingming

varchar(200)

NULL

教师姓名

    4、部分关键代码实现  

package com.controller;

import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Map;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Date;
import java.util.List;
import javax.servlet.http.HttpServletRequest;

import com.utils.ValidatorUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.format.annotation.DateTimeFormat;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.annotation.IgnoreAuth;

import com.entity.XueshengtiwenEntity;
import com.entity.view.XueshengtiwenView;

import com.service.XueshengtiwenService;
import com.service.TokenService;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.MD5Util;
import com.utils.MPUtil;
import com.utils.CommonUtil;


/**
 * 学生提问
 * 后端接口
 * @author 
 * @email 
 * @date 2021-05-25 13:36:37
 */
@RestController
@RequestMapping("/xueshengtiwen")
public class XueshengtiwenController {
    @Autowired
    private XueshengtiwenService xueshengtiwenService;
    


    /**
     * 后端列表
     */
    @RequestMapping("/page")
    public R page(@RequestParam Map<String, Object> params,XueshengtiwenEntity xueshengtiwen,
		HttpServletRequest request){
		String tableName = request.getSession().getAttribute("tableName").toString();
		if(tableName.equals("jiaoshiyonghu")) {
			xueshengtiwen.setJiaoshigonghao((String)request.getSession().getAttribute("username"));
		}
		if(tableName.equals("xueshengyonghu")) {
			xueshengtiwen.setXuehao((String)request.getSession().getAttribute("username"));
		}
        EntityWrapper<XueshengtiwenEntity> ew = new EntityWrapper<XueshengtiwenEntity>();
		PageUtils page = xueshengtiwenService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, xueshengtiwen), params), params));

        return R.ok().put("data", page);
    }
    
    /**
     * 前端列表
     */
    @RequestMapping("/list")
    public R list(@RequestParam Map<String, Object> params,XueshengtiwenEntity xueshengtiwen, 
		HttpServletRequest request){
        EntityWrapper<XueshengtiwenEntity> ew = new EntityWrapper<XueshengtiwenEntity>();
		PageUtils page = xueshengtiwenService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, xueshengtiwen), params), params));
        return R.ok().put("data", page);
    }

	/**
     * 列表
     */
    @RequestMapping("/lists")
    public R list( XueshengtiwenEntity xueshengtiwen){
       	EntityWrapper<XueshengtiwenEntity> ew = new EntityWrapper<XueshengtiwenEntity>();
      	ew.allEq(MPUtil.allEQMapPre( xueshengtiwen, "xueshengtiwen")); 
        return R.ok().put("data", xueshengtiwenService.selectListView(ew));
    }

	 /**
     * 查询
     */
    @RequestMapping("/query")
    public R query(XueshengtiwenEntity xueshengtiwen){
        EntityWrapper< XueshengtiwenEntity> ew = new EntityWrapper< XueshengtiwenEntity>();
 		ew.allEq(MPUtil.allEQMapPre( xueshengtiwen, "xueshengtiwen")); 
		XueshengtiwenView xueshengtiwenView =  xueshengtiwenService.selectView(ew);
		return R.ok("查询学生提问成功").put("data", xueshengtiwenView);
    }
	
    /**
     * 后端详情
     */
    @RequestMapping("/info/{id}")
    public R info(@PathVariable("id") Long id){
        XueshengtiwenEntity xueshengtiwen = xueshengtiwenService.selectById(id);
        return R.ok().put("data", xueshengtiwen);
    }

    /**
     * 前端详情
     */
    @RequestMapping("/detail/{id}")
    public R detail(@PathVariable("id") Long id){
        XueshengtiwenEntity xueshengtiwen = xueshengtiwenService.selectById(id);
        return R.ok().put("data", xueshengtiwen);
    }
    



    /**
     * 后端保存
     */
    @RequestMapping("/save")
    public R save(@RequestBody XueshengtiwenEntity xueshengtiwen, HttpServletRequest request){
    	xueshengtiwen.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    	//ValidatorUtils.validateEntity(xueshengtiwen);
        xueshengtiwenService.insert(xueshengtiwen);
        return R.ok();
    }
    
    /**
     * 前端保存
     */
    @RequestMapping("/add")
    public R add(@RequestBody XueshengtiwenEntity xueshengtiwen, HttpServletRequest request){
    	xueshengtiwen.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    	//ValidatorUtils.validateEntity(xueshengtiwen);
        xueshengtiwenService.insert(xueshengtiwen);
        return R.ok();
    }

    /**
     * 修改
     */
    @RequestMapping("/update")
    public R update(@RequestBody XueshengtiwenEntity xueshengtiwen, HttpServletRequest request){
        //ValidatorUtils.validateEntity(xueshengtiwen);
        xueshengtiwenService.updateById(xueshengtiwen);//全部更新
        return R.ok();
    }
    

    /**
     * 删除
     */
    @RequestMapping("/delete")
    public R delete(@RequestBody Long[] ids){
        xueshengtiwenService.deleteBatchIds(Arrays.asList(ids));
        return R.ok();
    }
    
    /**
     * 提醒接口
     */
	@RequestMapping("/remind/{columnName}/{type}")
	public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request, 
						 @PathVariable("type") String type,@RequestParam Map<String, Object> map) {
		map.put("column", columnName);
		map.put("type", type);
		
		if(type.equals("2")) {
			SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
			Calendar c = Calendar.getInstance();
			Date remindStartDate = null;
			Date remindEndDate = null;
			if(map.get("remindstart")!=null) {
				Integer remindStart = Integer.parseInt(map.get("remindstart").toString());
				c.setTime(new Date()); 
				c.add(Calendar.DAY_OF_MONTH,remindStart);
				remindStartDate = c.getTime();
				map.put("remindstart", sdf.format(remindStartDate));
			}
			if(map.get("remindend")!=null) {
				Integer remindEnd = Integer.parseInt(map.get("remindend").toString());
				c.setTime(new Date());
				c.add(Calendar.DAY_OF_MONTH,remindEnd);
				remindEndDate = c.getTime();
				map.put("remindend", sdf.format(remindEndDate));
			}
		}
		
		Wrapper<XueshengtiwenEntity> wrapper = new EntityWrapper<XueshengtiwenEntity>();
		if(map.get("remindstart")!=null) {
			wrapper.ge(columnName, map.get("remindstart"));
		}
		if(map.get("remindend")!=null) {
			wrapper.le(columnName, map.get("remindend"));
		}

		String tableName = request.getSession().getAttribute("tableName").toString();
		if(tableName.equals("jiaoshiyonghu")) {
			wrapper.eq("jiaoshigonghao", (String)request.getSession().getAttribute("username"));
		}
		if(tableName.equals("xueshengyonghu")) {
			wrapper.eq("xuehao", (String)request.getSession().getAttribute("username"));
		}

		int count = xueshengtiwenService.selectCount(wrapper);
		return R.ok().put("count", count);
	}
	


}
package com.controller;

import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Map;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Date;
import java.util.List;
import javax.servlet.http.HttpServletRequest;

import com.utils.ValidatorUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.format.annotation.DateTimeFormat;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.annotation.IgnoreAuth;

import com.entity.XueshengyonghuEntity;
import com.entity.view.XueshengyonghuView;

import com.service.XueshengyonghuService;
import com.service.TokenService;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.MD5Util;
import com.utils.MPUtil;
import com.utils.CommonUtil;


/**
 * 学生用户
 * 后端接口
 * @author 
 * @email 
 * @date 2021-05-25 13:36:36
 */
@RestController
@RequestMapping("/xueshengyonghu")
public class XueshengyonghuController {
    @Autowired
    private XueshengyonghuService xueshengyonghuService;
    
	@Autowired
	private TokenService tokenService;
	
	/**
	 * 登录
	 */
	@IgnoreAuth
	@RequestMapping(value = "/login")
	public R login(String username, String password, String captcha, HttpServletRequest request) {
		XueshengyonghuEntity user = xueshengyonghuService.selectOne(new EntityWrapper<XueshengyonghuEntity>().eq("xuehao", username));
		if(user==null || !user.getMima().equals(password)) {
			return R.error("账号或密码不正确");
		}
		
		String token = tokenService.generateToken(user.getId(), username,"xueshengyonghu",  "学生用户" );
		return R.ok().put("token", token);
	}
	
	/**
     * 注册
     */
	@IgnoreAuth
    @RequestMapping("/register")
    public R register(@RequestBody XueshengyonghuEntity xueshengyonghu){
    	//ValidatorUtils.validateEntity(xueshengyonghu);
    	XueshengyonghuEntity user = xueshengyonghuService.selectOne(new EntityWrapper<XueshengyonghuEntity>().eq("xuehao", xueshengyonghu.getXuehao()));
		if(user!=null) {
			return R.error("注册用户已存在");
		}
		Long uId = new Date().getTime();
		xueshengyonghu.setId(uId);
        xueshengyonghuService.insert(xueshengyonghu);
        return R.ok();
    }
	
	/**
	 * 退出
	 */
	@RequestMapping("/logout")
	public R logout(HttpServletRequest request) {
		request.getSession().invalidate();
		return R.ok("退出成功");
	}
	
	/**
     * 获取用户的session用户信息
     */
    @RequestMapping("/session")
    public R getCurrUser(HttpServletRequest request){
    	Long id = (Long)request.getSession().getAttribute("userId");
        XueshengyonghuEntity user = xueshengyonghuService.selectById(id);
        return R.ok().put("data", user);
    }
    
    /**
     * 密码重置
     */
    @IgnoreAuth
	@RequestMapping(value = "/resetPass")
    public R resetPass(String username, HttpServletRequest request){
    	XueshengyonghuEntity user = xueshengyonghuService.selectOne(new EntityWrapper<XueshengyonghuEntity>().eq("xuehao", username));
    	if(user==null) {
    		return R.error("账号不存在");
    	}
        user.setMima("123456");
        xueshengyonghuService.updateById(user);
        return R.ok("密码已重置为:123456");
    }


    /**
     * 后端列表
     */
    @RequestMapping("/page")
    public R page(@RequestParam Map<String, Object> params,XueshengyonghuEntity xueshengyonghu,
		HttpServletRequest request){
        EntityWrapper<XueshengyonghuEntity> ew = new EntityWrapper<XueshengyonghuEntity>();
		PageUtils page = xueshengyonghuService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, xueshengyonghu), params), params));

        return R.ok().put("data", page);
    }
    
    /**
     * 前端列表
     */
    @RequestMapping("/list")
    public R list(@RequestParam Map<String, Object> params,XueshengyonghuEntity xueshengyonghu, 
		HttpServletRequest request){
        EntityWrapper<XueshengyonghuEntity> ew = new EntityWrapper<XueshengyonghuEntity>();
		PageUtils page = xueshengyonghuService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, xueshengyonghu), params), params));
        return R.ok().put("data", page);
    }

	/**
     * 列表
     */
    @RequestMapping("/lists")
    public R list( XueshengyonghuEntity xueshengyonghu){
       	EntityWrapper<XueshengyonghuEntity> ew = new EntityWrapper<XueshengyonghuEntity>();
      	ew.allEq(MPUtil.allEQMapPre( xueshengyonghu, "xueshengyonghu")); 
        return R.ok().put("data", xueshengyonghuService.selectListView(ew));
    }

	 /**
     * 查询
     */
    @RequestMapping("/query")
    public R query(XueshengyonghuEntity xueshengyonghu){
        EntityWrapper< XueshengyonghuEntity> ew = new EntityWrapper< XueshengyonghuEntity>();
 		ew.allEq(MPUtil.allEQMapPre( xueshengyonghu, "xueshengyonghu")); 
		XueshengyonghuView xueshengyonghuView =  xueshengyonghuService.selectView(ew);
		return R.ok("查询学生用户成功").put("data", xueshengyonghuView);
    }
	
    /**
     * 后端详情
     */
    @RequestMapping("/info/{id}")
    public R info(@PathVariable("id") Long id){
        XueshengyonghuEntity xueshengyonghu = xueshengyonghuService.selectById(id);
        return R.ok().put("data", xueshengyonghu);
    }

    /**
     * 前端详情
     */
    @RequestMapping("/detail/{id}")
    public R detail(@PathVariable("id") Long id){
        XueshengyonghuEntity xueshengyonghu = xueshengyonghuService.selectById(id);
        return R.ok().put("data", xueshengyonghu);
    }
    



    /**
     * 后端保存
     */
    @RequestMapping("/save")
    public R save(@RequestBody XueshengyonghuEntity xueshengyonghu, HttpServletRequest request){
    	xueshengyonghu.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    	//ValidatorUtils.validateEntity(xueshengyonghu);
    	XueshengyonghuEntity user = xueshengyonghuService.selectOne(new EntityWrapper<XueshengyonghuEntity>().eq("xuehao", xueshengyonghu.getXuehao()));
		if(user!=null) {
			return R.error("用户已存在");
		}
		xueshengyonghu.setId(new Date().getTime());
        xueshengyonghuService.insert(xueshengyonghu);
        return R.ok();
    }
    
    /**
     * 前端保存
     */
    @RequestMapping("/add")
    public R add(@RequestBody XueshengyonghuEntity xueshengyonghu, HttpServletRequest request){
    	xueshengyonghu.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    	//ValidatorUtils.validateEntity(xueshengyonghu);
    	XueshengyonghuEntity user = xueshengyonghuService.selectOne(new EntityWrapper<XueshengyonghuEntity>().eq("xuehao", xueshengyonghu.getXuehao()));
		if(user!=null) {
			return R.error("用户已存在");
		}
		xueshengyonghu.setId(new Date().getTime());
        xueshengyonghuService.insert(xueshengyonghu);
        return R.ok();
    }

    /**
     * 修改
     */
    @RequestMapping("/update")
    public R update(@RequestBody XueshengyonghuEntity xueshengyonghu, HttpServletRequest request){
        //ValidatorUtils.validateEntity(xueshengyonghu);
        xueshengyonghuService.updateById(xueshengyonghu);//全部更新
        return R.ok();
    }
    

    /**
     * 删除
     */
    @RequestMapping("/delete")
    public R delete(@RequestBody Long[] ids){
        xueshengyonghuService.deleteBatchIds(Arrays.asList(ids));
        return R.ok();
    }
    
    /**
     * 提醒接口
     */
	@RequestMapping("/remind/{columnName}/{type}")
	public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request, 
						 @PathVariable("type") String type,@RequestParam Map<String, Object> map) {
		map.put("column", columnName);
		map.put("type", type);
		
		if(type.equals("2")) {
			SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
			Calendar c = Calendar.getInstance();
			Date remindStartDate = null;
			Date remindEndDate = null;
			if(map.get("remindstart")!=null) {
				Integer remindStart = Integer.parseInt(map.get("remindstart").toString());
				c.setTime(new Date()); 
				c.add(Calendar.DAY_OF_MONTH,remindStart);
				remindStartDate = c.getTime();
				map.put("remindstart", sdf.format(remindStartDate));
			}
			if(map.get("remindend")!=null) {
				Integer remindEnd = Integer.parseInt(map.get("remindend").toString());
				c.setTime(new Date());
				c.add(Calendar.DAY_OF_MONTH,remindEnd);
				remindEndDate = c.getTime();
				map.put("remindend", sdf.format(remindEndDate));
			}
		}
		
		Wrapper<XueshengyonghuEntity> wrapper = new EntityWrapper<XueshengyonghuEntity>();
		if(map.get("remindstart")!=null) {
			wrapper.ge(columnName, map.get("remindstart"));
		}
		if(map.get("remindend")!=null) {
			wrapper.le(columnName, map.get("remindend"));
		}


		int count = xueshengyonghuService.selectCount(wrapper);
		return R.ok().put("count", count);
	}
	


}

 5、系统实现 (展示部分截图)    

 5.1 管理员模块的实现

5.1.1 教师信息管理 

5.1.2 学生信息管理 

5.1.3 在线课程管理 

 5.1.4 班级分类管理

 5.2 教师模块的实现

5.2.1 在线课程信息 

 5.2.2 教学计划管理

 5.2.3 学生提问

5.3 学生模块的实现
5.3.1 学生提问

 5.3.2 在线交流

 5.3.3 在线课程

 

源码获取

谢谢大家点赞、收藏、关注、评论,如有需要可查看主页获取联系方式

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值