微信小程序毕业设计-医院挂号系统项目开发实战(附源码+论文)

大家好!我是程序猿老A,感谢您阅读本文,欢迎一键三连哦。

💞当前专栏:微信小程序毕业设计

精彩专栏推荐👇🏻👇🏻👇🏻

🎀 Python毕业设计

🌎Java毕业设计

开发运行环境

①前端:微信小程序开发工具

② 后端:Java

  • 框架:ssm
  • JDK版本:JDK1.8
  • 服务器:tomcat7
  • 数据库:mysql 5.7
  • 数据库工具:Navicat12
  • 开发软件:eclipse/myeclipse/idea
  • Maven包:Maven3.3.9
  • 浏览器:谷歌浏览器

演示视频

前端:

weixin134医院挂号系统设计与实现-微信端

后端:

weixin134医院挂号系统设计与实现-服务端

原版高清演示视频-编号:134
https://pan.quark.cn/s/c0c9519df9d4

源码下载地址:

https://download.csdn.net/download/2301_76953549/89090147

论文目录

【如需全文请按文末获取联系】

一、项目简介

本医院挂号系统小程序可以实现患者管理,医生管理,科室管理,专家信息管理,预约信息管理,取消预约申请管理,系统管理等功能。

二、系统设计

2.1软件功能模块设计

设计的系统主要是为用户提供的一些信息进行服务的。设计的功能结构图如下图所示:

2.2数据库设计

(1)患者的实体属性图如下:

(2)系统公告实体属性图如图4.13所示:

(3)科室信息实体属性图如图4.14所示:

三、系统项目部分截图

3.1管理员模块的实现

预约信息管理

管理员可以管理预约信息,可以对预约信息进行审核。具体界面的展示如图5.1所示。

系统公告管理

管理员可以对公告信息进行添加,查询修改,删除操作。具体界面如图5.2所示。

患者管理

系统管理员可以管理患者。界面如下图所示:

3.2小程序患者模块的实现

系统首页

小程序患者是需要注册才可以进行登录的,登录后的首页界面如下图所示:

我的菜单

在小程序里点击我的,会出现关于我的界面,在这里可以修改个人信息,以及可以点击其他功能模块。界面如下图所示:

预约挂号

患者查看医生信息之后,能够对该医生进行预约挂号。界面如下图所示:

四、部分核心代码

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.QuxiaoyuyueshenqingEntity;
import com.entity.view.QuxiaoyuyueshenqingView;

import com.service.QuxiaoyuyueshenqingService;
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-04-18 15:39:33
 */
@RestController
@RequestMapping("/quxiaoyuyueshenqing")
public class QuxiaoyuyueshenqingController {
    @Autowired
    private QuxiaoyuyueshenqingService quxiaoyuyueshenqingService;
    


    /**
     * 后端列表
     */
    @RequestMapping("/page")
    public R page(@RequestParam Map<String, Object> params,QuxiaoyuyueshenqingEntity quxiaoyuyueshenqing, 
		HttpServletRequest request){

		String tableName = request.getSession().getAttribute("tableName").toString();
		if(tableName.equals("yisheng")) {
			quxiaoyuyueshenqing.setYishenggonghao((String)request.getSession().getAttribute("username"));
		}
		if(tableName.equals("huanzhe")) {
			quxiaoyuyueshenqing.setYonghuming((String)request.getSession().getAttribute("username"));
		}
        EntityWrapper<QuxiaoyuyueshenqingEntity> ew = new EntityWrapper<QuxiaoyuyueshenqingEntity>();
		PageUtils page = quxiaoyuyueshenqingService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, quxiaoyuyueshenqing), params), params));
        return R.ok().put("data", page);
    }
    
    /**
     * 前端列表
     */
    @RequestMapping("/list")
    public R list(@RequestParam Map<String, Object> params,QuxiaoyuyueshenqingEntity quxiaoyuyueshenqing, HttpServletRequest request){

		String tableName = request.getSession().getAttribute("tableName").toString();
		if(tableName.equals("yisheng")) {
			quxiaoyuyueshenqing.setYishenggonghao((String)request.getSession().getAttribute("username"));
		}
		if(tableName.equals("huanzhe")) {
			quxiaoyuyueshenqing.setYonghuming((String)request.getSession().getAttribute("username"));
		}
        EntityWrapper<QuxiaoyuyueshenqingEntity> ew = new EntityWrapper<QuxiaoyuyueshenqingEntity>();
		PageUtils page = quxiaoyuyueshenqingService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, quxiaoyuyueshenqing), params), params));
        return R.ok().put("data", page);
    }

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

	 /**
     * 查询
     */
    @RequestMapping("/query")
    public R query(QuxiaoyuyueshenqingEntity quxiaoyuyueshenqing){
        EntityWrapper< QuxiaoyuyueshenqingEntity> ew = new EntityWrapper< QuxiaoyuyueshenqingEntity>();
 		ew.allEq(MPUtil.allEQMapPre( quxiaoyuyueshenqing, "quxiaoyuyueshenqing")); 
		QuxiaoyuyueshenqingView quxiaoyuyueshenqingView =  quxiaoyuyueshenqingService.selectView(ew);
		return R.ok("查询取消预约申请成功").put("data", quxiaoyuyueshenqingView);
    }
	
    /**
     * 后端详情
     */
    @RequestMapping("/info/{id}")
    public R info(@PathVariable("id") Long id){
        QuxiaoyuyueshenqingEntity quxiaoyuyueshenqing = quxiaoyuyueshenqingService.selectById(id);
        return R.ok().put("data", quxiaoyuyueshenqing);
    }

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



    /**
     * 后端保存
     */
    @RequestMapping("/save")
    public R save(@RequestBody QuxiaoyuyueshenqingEntity quxiaoyuyueshenqing, HttpServletRequest request){
    	quxiaoyuyueshenqing.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    	//ValidatorUtils.validateEntity(quxiaoyuyueshenqing);

        quxiaoyuyueshenqingService.insert(quxiaoyuyueshenqing);
        return R.ok();
    }
    
    /**
     * 前端保存
     */
    @RequestMapping("/add")
    public R add(@RequestBody QuxiaoyuyueshenqingEntity quxiaoyuyueshenqing, HttpServletRequest request){
    	quxiaoyuyueshenqing.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    	//ValidatorUtils.validateEntity(quxiaoyuyueshenqing);
    	quxiaoyuyueshenqing.setUserid((Long)request.getSession().getAttribute("userId"));

        quxiaoyuyueshenqingService.insert(quxiaoyuyueshenqing);
        return R.ok();
    }

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

    /**
     * 删除
     */
    @RequestMapping("/delete")
    public R delete(@RequestBody Long[] ids){
        quxiaoyuyueshenqingService.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<QuxiaoyuyueshenqingEntity> wrapper = new EntityWrapper<QuxiaoyuyueshenqingEntity>();
		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("yisheng")) {
			wrapper.eq("yishenggonghao", (String)request.getSession().getAttribute("username"));
		}
		if(tableName.equals("huanzhe")) {
			wrapper.eq("yonghuming", (String)request.getSession().getAttribute("username"));
		}

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


}

五、获取源码或论文

如需对应的论文或源码,以及其他定制需求,也可以点我头像查看个人简介联系。

相关推荐
攀小黑19 小时前
基于若依-内容管理动态修改,通过路由字典配置动态管理
java·vue.js·spring boot·前端框架·ruoyi
青云交20 小时前
Java 大视界 -- 基于 Java 的大数据可视化在城市空气质量监测与污染溯源中的应用
java·spark·lstm·可视化·java 大数据·空气质量监测·污染溯源
wx_ywyy679820 小时前
小程序定制开发实战:需求拆解、UI 设计与个性化功能落地流程
小程序·小程序开发·小程序制作·小程序搭建·小程序设计·小程序定制开发·小程序开发搭建
亮子AI20 小时前
【小程序】详细比较微信小程序的 onLoad 和 onShow
微信小程序·小程序
权泽谦20 小时前
用 Python 做一个天气预报桌面小程序(附源码 + 打包与部署指导)
开发语言·python·小程序
小小王app小程序开发20 小时前
盲盒抽赏小程序爬塔玩法分析:技术实现 + 留存破局,打造长效抽赏生态
小程序
森语林溪20 小时前
大数据环境搭建从零开始(十七):JDK 17 安装与配置完整指南
java·大数据·开发语言·centos·vmware·软件需求·虚拟机
郝开21 小时前
Spring Boot 2.7.18(最终 2.x 系列版本)1 - 技术选型:连接池技术选型对比;接口文档技术选型对比
java·spring boot·spring
阿里花盘21 小时前
教育培训机构如何搭建自己的在线教育小程序?
小程序·哈希算法·剪枝·霍夫曼树
码界筑梦坊21 小时前
240-基于Python的医疗疾病数据可视化分析系统
开发语言·python·信息可视化·数据分析·毕业设计·echarts