++健康打卡|健康管理++
目录
博主介绍:✌️大厂码农|毕设布道师,阿里云开发社区乘风者计划专家博主,CSDN平台Java领域优质创作者,专注于大学生项目实战开发、讲解和毕业答疑辅导。✌️
主要项目:小程序、SpringBoot、SSM、Vue、Html、Jsp、Nodejs等设计与开发。
🍅文末获取源码联系🍅
基于java+vue+的学生健康打卡系统设计与实现
一、前言
系统采用了Java技术,将所有业务模块采用以浏览器交互的模式,选择MySQL作为系统的数据库,开发工具选择My eclipse来进行系统的设计。基本实现了高校学生健康打卡系统应有的主要功能模块,本系统有管理员、教师、学生。管理员:管理员:首页、用户管理(管理员、教师、学生)更多管理(班级管理、通知公告、每日安排、每日打卡、学生请假、学生日记、疫情上报)。教师;教师:首页、学生管理、通知公告、每日安排、每日打卡、学生请假、学生日记、疫情上报。学生;首页、通知公告、每日安排、每日打卡、学生请假、学生日记、疫情上报管理等。
对系统进行测试后,改善了程序逻辑和代码。同时确保系统中所有的程序都能正常运行,所有的功能都能操作,并且该系统有很好的操作体验,实现了对于高校学生健康打卡系统对学生管理、教师管理、政府部门双赢。
关键词:数据通信;Java语言;数据存储
二、系统功能设计

三、系统实现
系统登录界面如下所示。

图5-2系统登录界面
1用户子系统模块的实现
用户首页模块
系统呈现出一种简洁大方的首页:界面简约、鳞次栉比,用户能轻车熟路的使用。出于对系统使用群体广泛的顾虑,应有良好性能的后台。
如下图所示为系统的首页界面。

图5-3系统首页界面
每日安排模块
每日安排学生编辑学号、教师工号、教师姓名、班级名称、学生账号、学生姓名、记录日期等内容,并可根据需要进行修改、删除等操作。如图5-4所示。

图5-4每日安排界面图
每日打卡模块
每日打卡学生编辑学号、教师工号、教师姓名、班级名称、学生账号、学生姓名、记录日期、今日体温等内容,并可根据需要进行修改、删除等操作。如图5-5所示。

图5-5每日打卡录入界面如图
学生请假模块
学生请假学生编辑学号、教师工号、教师姓名、班级名称、学生账号、学生姓名、请假类型、请假天数等内容,并可根据需要进行修改、删除等操作。如图5-6所示。

图5-6学生请假申请界面
2管理员子系统模块的实现
学生管理模块
学生管理界面如下图所示。

图5-7学生管理界面
每日安排管理模块
每日安排界面如下图所示。

图5-9每日安排添加界面
每日打卡模块
每日打卡页面可查看学号、教师工号、教师姓名、班级名称、学生账号、学生姓名、记录日期、今日体温等内容,并可根据需要进行修改、删除等操作

图5-10每日打卡界面
四、数据库设计
|---------------------|-----------|----|--------|----|--------|
| class_management || | | | |
| 字段名称 | 类型 | 长度 | 不是null | 主键 | 字段说明 |
| class_management_id | int | 11 | 否 | 主键 | 班级管理ID |
| class_name | varchar | 64 | 是 | | 班级名称 |
| headmaster | varchar | 64 | 是 | | 班主任 |
| contact_number | varchar | 64 | 是 | | 联系电话 |
| class_size | int | 11 | 是 | | 班级人数 |
| recommend | int | 11 | 否 | | 智能推荐 |
| create_time | datetime | 0 | 否 | | 创建时间 |
| update_time | timestamp | 0 | 否 | | 更新时间 |
| || | | | |
| daily_schedule || | | | |
| 字段名称 | 类型 | 长度 | 不是null | 主键 | 字段说明 |
| daily_schedule_id | int | 11 | 否 | 主键 | 每日安排ID |
| student_number | int | 11 | 是 | | 学号 |
| student_name | varchar | 64 | 是 | | 学生姓名 |
| teacher_job_number | int | 11 | 是 | | 教师工号 |
| teacher_name | varchar | 64 | 是 | | 教师姓名 |
| class_name | varchar | 64 | 是 | | 班级名称 |
| record_date | date | 0 | 是 | | 记录日期 |
| schedule | text | 0 | 是 | | 时间安排 |
| recommend | int | 11 | 否 | | 智能推荐 |
| create_time | datetime | 0 | 否 | | 创建时间 |
| update_time | timestamp | 0 | 否 | | 更新时间 |
| || | | | |
|---|
| |
五、核心代码
java
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.BumenEntity;
import com.entity.view.BumenView;
import com.service.BumenService;
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-07 10:42:31
*/
@RestController
@RequestMapping("/bumen")
public class BumenController {
@Autowired
private BumenService bumenService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,BumenEntity bumen,
HttpServletRequest request){
EntityWrapper<BumenEntity> ew = new EntityWrapper<BumenEntity>();
PageUtils page = bumenService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, bumen), params), params));
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,BumenEntity bumen,
HttpServletRequest request){
EntityWrapper<BumenEntity> ew = new EntityWrapper<BumenEntity>();
PageUtils page = bumenService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, bumen), params), params));
return R.ok().put("data", page);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( BumenEntity bumen){
EntityWrapper<BumenEntity> ew = new EntityWrapper<BumenEntity>();
ew.allEq(MPUtil.allEQMapPre( bumen, "bumen"));
return R.ok().put("data", bumenService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(BumenEntity bumen){
EntityWrapper< BumenEntity> ew = new EntityWrapper< BumenEntity>();
ew.allEq(MPUtil.allEQMapPre( bumen, "bumen"));
BumenView bumenView = bumenService.selectView(ew);
return R.ok("查询部门成功").put("data", bumenView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id){
BumenEntity bumen = bumenService.selectById(id);
return R.ok().put("data", bumen);
}
/**
* 前端详情
*/
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Long id){
BumenEntity bumen = bumenService.selectById(id);
return R.ok().put("data", bumen);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody BumenEntity bumen, HttpServletRequest request){
bumen.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(bumen);
bumenService.insert(bumen);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody BumenEntity bumen, HttpServletRequest request){
bumen.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(bumen);
bumenService.insert(bumen);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
public R update(@RequestBody BumenEntity bumen, HttpServletRequest request){
//ValidatorUtils.validateEntity(bumen);
bumenService.updateById(bumen);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
bumenService.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<BumenEntity> wrapper = new EntityWrapper<BumenEntity>();
if(map.get("remindstart")!=null) {
wrapper.ge(columnName, map.get("remindstart"));
}
if(map.get("remindend")!=null) {
wrapper.le(columnName, map.get("remindend"));
}
int count = bumenService.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.GangweiEntity;
import com.entity.view.GangweiView;
import com.service.GangweiService;
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-07 10:42:31
*/
@RestController
@RequestMapping("/gangwei")
public class GangweiController {
@Autowired
private GangweiService gangweiService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,GangweiEntity gangwei,
HttpServletRequest request){
EntityWrapper<GangweiEntity> ew = new EntityWrapper<GangweiEntity>();
PageUtils page = gangweiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, gangwei), params), params));
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,GangweiEntity gangwei,
HttpServletRequest request){
EntityWrapper<GangweiEntity> ew = new EntityWrapper<GangweiEntity>();
PageUtils page = gangweiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, gangwei), params), params));
return R.ok().put("data", page);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( GangweiEntity gangwei){
EntityWrapper<GangweiEntity> ew = new EntityWrapper<GangweiEntity>();
ew.allEq(MPUtil.allEQMapPre( gangwei, "gangwei"));
return R.ok().put("data", gangweiService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(GangweiEntity gangwei){
EntityWrapper< GangweiEntity> ew = new EntityWrapper< GangweiEntity>();
ew.allEq(MPUtil.allEQMapPre( gangwei, "gangwei"));
GangweiView gangweiView = gangweiService.selectView(ew);
return R.ok("查询岗位成功").put("data", gangweiView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id){
GangweiEntity gangwei = gangweiService.selectById(id);
return R.ok().put("data", gangwei);
}
/**
* 前端详情
*/
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Long id){
GangweiEntity gangwei = gangweiService.selectById(id);
return R.ok().put("data", gangwei);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody GangweiEntity gangwei, HttpServletRequest request){
gangwei.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(gangwei);
gangweiService.insert(gangwei);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody GangweiEntity gangwei, HttpServletRequest request){
gangwei.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(gangwei);
gangweiService.insert(gangwei);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
public R update(@RequestBody GangweiEntity gangwei, HttpServletRequest request){
//ValidatorUtils.validateEntity(gangwei);
gangweiService.updateById(gangwei);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
gangweiService.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<GangweiEntity> wrapper = new EntityWrapper<GangweiEntity>();
if(map.get("remindstart")!=null) {
wrapper.ge(columnName, map.get("remindstart"));
}
if(map.get("remindend")!=null) {
wrapper.le(columnName, map.get("remindend"));
}
int count = gangweiService.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.JixiaokaoheEntity;
import com.entity.view.JixiaokaoheView;
import com.service.JixiaokaoheService;
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-07 10:42:31
*/
@RestController
@RequestMapping("/jixiaokaohe")
public class JixiaokaoheController {
@Autowired
private JixiaokaoheService jixiaokaoheService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,JixiaokaoheEntity jixiaokaohe,
HttpServletRequest request){
String tableName = request.getSession().getAttribute("tableName").toString();
if(tableName.equals("yuangong")) {
jixiaokaohe.setYuangonggonghao((String)request.getSession().getAttribute("username"));
}
EntityWrapper<JixiaokaoheEntity> ew = new EntityWrapper<JixiaokaoheEntity>();
PageUtils page = jixiaokaoheService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, jixiaokaohe), params), params));
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,JixiaokaoheEntity jixiaokaohe,
HttpServletRequest request){
EntityWrapper<JixiaokaoheEntity> ew = new EntityWrapper<JixiaokaoheEntity>();
PageUtils page = jixiaokaoheService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, jixiaokaohe), params), params));
return R.ok().put("data", page);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( JixiaokaoheEntity jixiaokaohe){
EntityWrapper<JixiaokaoheEntity> ew = new EntityWrapper<JixiaokaoheEntity>();
ew.allEq(MPUtil.allEQMapPre( jixiaokaohe, "jixiaokaohe"));
return R.ok().put("data", jixiaokaoheService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(JixiaokaoheEntity jixiaokaohe){
EntityWrapper< JixiaokaoheEntity> ew = new EntityWrapper< JixiaokaoheEntity>();
ew.allEq(MPUtil.allEQMapPre( jixiaokaohe, "jixiaokaohe"));
JixiaokaoheView jixiaokaoheView = jixiaokaoheService.selectView(ew);
return R.ok("查询绩效考核成功").put("data", jixiaokaoheView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id){
JixiaokaoheEntity jixiaokaohe = jixiaokaoheService.selectById(id);
return R.ok().put("data", jixiaokaohe);
}
/**
* 前端详情
*/
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Long id){
JixiaokaoheEntity jixiaokaohe = jixiaokaoheService.selectById(id);
return R.ok().put("data", jixiaokaohe);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody JixiaokaoheEntity jixiaokaohe, HttpServletRequest request){
jixiaokaohe.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(jixiaokaohe);
jixiaokaoheService.insert(jixiaokaohe);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody JixiaokaoheEntity jixiaokaohe, HttpServletRequest request){
jixiaokaohe.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(jixiaokaohe);
jixiaokaoheService.insert(jixiaokaohe);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
public R update(@RequestBody JixiaokaoheEntity jixiaokaohe, HttpServletRequest request){
//ValidatorUtils.validateEntity(jixiaokaohe);
jixiaokaoheService.updateById(jixiaokaohe);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
jixiaokaoheService.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<JixiaokaoheEntity> wrapper = new EntityWrapper<JixiaokaoheEntity>();
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("yuangong")) {
wrapper.eq("yuangonggonghao", (String)request.getSession().getAttribute("username"));
}
int count = jixiaokaoheService.selectCount(wrapper);
return R.ok().put("count", count);
}
}
六、论文参考



七、最新计算机毕设选题推荐
八、源码获取:
大家点赞、收藏、关注、评论 啦 、👇🏻获取联系方式在文章末尾👇🏻