医院挂号系统
目录
基于java+vue的医院挂号系统设计与实现
一、前言
二、系统功能设计
三、系统实现
四、数据库设计
五、核心代码
六、论文参考
七、最新计算机毕设选题推荐
八、源码获取:
博主介绍:✌️大厂码农|毕设布道师,阿里云开发社区乘风者计划专家博主,CSDN平台Java领域优质创作者,专注于大学生项目实战开发、讲解和毕业答疑辅导。✌️
主要项目:小程序、SpringBoot、SSM、Vue、Html、Jsp、Nodejs等设计与开发。
🍅文末获取源码联系🍅
基于java+vue的医院挂号系统设计与实现
一、前言
本文介绍了医院挂号系统的开发全过程。通过分析医院挂号信息管理的不足,创建了一个计算机管理医院挂号信息的方案。文章介绍了医院挂号系统小程序的系统分析部分,包括可行性分析等,系统设计部分主要介绍了系统功能设计和数据库设计。
医院挂号系统主要功能模块包括医生管理、科室信息管理、挂号预约管理、科室管理、挂号取消管理、核酸预约管理、患者病例管理等,采取面对对象的开发模式进行软件的开发和硬体的架设,能很好的满足实际使用的需求,完善了对应的软体架设以及程序编码的工作,采取MySQL作为后台数据的主要存储单元,采用Springboot框架、JSP技术、Ajax技术进行业务系统的编码及其开发,实现了本系统的全部功能。本次报告,首先分析了研究的背景、作用、意义,为研究工作的合理性打下了基础。针对医院挂号系统的各项需求以及技术问题进行分析,证明了系统的必要性和技术可行性,然后对设计系统需要使用的技术软件以及设计思想做了基本的介绍,最后来实现医院挂号系统和部署运行使用它。
关键词:医院挂号;Springboot框架;MySQL数据库
二、系统功能设计
三、系统实现
用户登录界面如下图所示。
图5-4用户登录界面
科室信息展示界面如下图所示。
图5-5科室信息展示界面
挂号预约界面如下图所示。
医生管理页面设计效果如下图所示。
图5-1医生管理界面
四、数据库设计
(1)患者的实体属性图如下:
图4.12 患者实体属性图
(2)系统公告实体属性图如图4.13所示:
图4.13 系统公告实体属性图
(3)科室信息实体属性图如图4.14所示:
图4.14 科室实体属性图
表4.1 患者
字段 | 类型 | 空 | 默认 | 注释 |
id (主键) | bigint(20) | 否 | 主键 | |
addtime | timestamp | 否 | CURRENT_TIMESTAMP | 创建时间 |
yonghuming | varchar(200) | 否 | 用户名 | |
mima | varchar(200) | 否 | 密码 | |
xingming | varchar(200) | 是 | NULL | 姓名 |
xingbie | varchar(200) | 是 | NULL | 性别 |
nianling | int(11) | 是 | NULL | 年龄 |
shouji | varchar(200) | 是 | NULL | 手机 |
youxiang | varchar(200) | 是 | NULL | 邮箱 |
shenfenzheng | varchar(200) | 是 | NULL | 身份证 |
touxiang | varchar(200) | 是 | NULL | 头像 |
表4.2 科室
字段 | 类型 | 空 | 默认 | 注释 |
id (主键) | bigint(20) | 否 | 主键 | |
addtime | timestamp | 否 | CURRENT_TIMESTAMP | 创建时间 |
keshi | varchar(200) | 是 | NULL | 科室 |
表4.3 系统公告
字段 | 类型 | 空 | 默认 | 注释 |
id (主键) | bigint(20) | 否 | 主键 | |
addtime | timestamp | 否 | CURRENT_TIMESTAMP | 创建时间 |
title | varchar(200) | 否 | 标题 | |
introduction | longtext | 是 | NULL | 简介 |
picture | varchar(200) | 否 | 图片 | |
content | longtext | 否 | 内容 |
表4.4 取消预约申请
字段 | 类型 | 空 | 默认 | 注释 |
id (主键) | bigint(20) | 否 | 主键 | |
addtime | timestamp | 否 | CURRENT_TIMESTAMP | 创建时间 |
yishenggonghao | varchar(200) | 是 | NULL | 医生工号 |
yishengxingming | varchar(200) | 是 | NULL | 医生姓名 |
suoshukeshi | varchar(200) | 是 | NULL | 所属科室 |
yishengxingbie | varchar(200) | 是 | NULL | 医生性别 |
yishengnianling | varchar(200) | 是 | NULL | 医生年龄 |
lianxidianhua | varchar(200) | 是 | NULL | 联系电话 |
yiyuanmingzi | varchar(200) | 是 | NULL | 医院名字 |
dizhi | varchar(200) | 是 | NULL | 地址 |
menzhenshijian | varchar(200) | 是 | NULL | 门诊时间 |
yishengjianjie | varchar(200) | 是 | NULL | 医生简介 |
yishengzhaopian | varchar(200) | 是 | NULL | 医生照片 |
yonghuming | varchar(200) | 是 | NULL | 用户名 |
xingming | varchar(200) | 是 | NULL | 姓名 |
shouji | varchar(200) | 是 | NULL | 手机 |
yuyueshijian | varchar(200) | 是 | NULL | 预约时间 |
quxiaoyuanyin | longtext | 是 | NULL | 取消原因 |
sfsh | varchar(200) | 是 | 否 | 是否审核 |
shhf | longtext | 是 | NULL | 审核回复 |
userid | bigint(20) | 是 | NULL | 用户id |
五、核心代码
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); } }六、论文参考
七、最新计算机毕设选题推荐
最新计算机软件毕业设计选题大全-CSDN博客
八、源码获取:
大家点赞、收藏、关注、评论啦 、👇🏻获取联系方式在文章末尾👇🏻