登录

  • 登录
  • 忘记密码?点击找回

注册

  • 获取手机验证码 60
  • 注册

找回密码

  • 获取手机验证码60
  • 找回
毕业论文网 > 毕业论文 > 计算机类 > 软件工程 > 正文

基于微信平台的医疗信息咨询系统

 2023-03-09 08:03  

论文总字数:26835字

摘 要

随着生活智能化逐渐取代原有的生活模式,人们的交流方式与上世纪相比发生了巨大的变化,网络与智能手机的普及预示着新的时代的到来,腾讯公司开发的微信软件在这个新时代横空出世。微信公众平台属于微信功能模块,通过该平台可以满足各类群体的现实需求。在这个迅速发展的时代,医院原有的就诊模式渐渐无法满足患者的需求,诊治流程弊端凸显。“排队两小时看病五分钟”的现象屡见不鲜,很多老百姓缺乏医疗常识,由此导致无论大小病症都要去医院询问医生才会放心,也因此造成医院患者人满为患,给真正需要就医的重症患者带来不小的阻碍和不便。

在此背景下,基于微信平台的医疗服务系统应运而生。该系统主要实现两个主要功能:诊断和预防。“诊断”的目的是为患者诊断出常见的病情病症。患者可以通过该系统的提示,描述自己的症状,交由系统判定属于何种疾病,并给出常见的医疗解决方法,以此来帮助普通患者快速了解自己的病情,解决日常常见的病症病情,缓解医院就医压力,同时为百姓健康提供便捷服务。“预防”的目的是为用户提供各季节易发疾病以及季节疾病预防方法。用户给系统提交自己需要了解的季节,系统返回给用户该季节易发疾病和预防措施,以帮助用户及时预防季节性疾病的发生。系统的开发,主要采用C/S架构和Model-View-Control模式,将基于微信平台的医疗服务系统整体分为表示层、逻辑应用层和数据层。其中表示层主要实现与用户的交互界面;逻辑应用层使用百度应用引擎BAE与微信服务器通过mmtls通讯协议进行通讯,实现数据互通,完成系统与用户交互的功能;数据层使用php语言与MySQL数据库,建立起支撑系统运作的数据源以及通过php代码编程,实现系统的数据调用与通讯功能。

关键字:微信公众平台;医疗服务;预防疾病;BAE;PHP。

Abstract

With intelligent life gradually replaced the original mode of life, the way people communicate compared with the last century has undergone tremendous changes, the development of Tencent Inc WeChat software appears in this new era was born. Function module of WeChat public platform is Tencent Inc newly added in the WeChat foundation last, through the platform, individuals, businesses, enterprises and government can meet the demands of reality. The rapid development in the era of life, the medical service institutions the original traditional medical mode has become increasingly unable to meet people"s demand for medical treatment, the traditional treatment process more disadvantages Highlights. "It is often s queue two hours five minutes to see a doctor" phenomenon, many people lack of medical knowledge, which leads to disease regardless of the size of going to the hospital to ask the doctor would be relieved, thus resulting in hospital overcrowding, to critically ill patients really need medical treatment to bring no small obstacle and inconvenience.

Under this background, the medical service system came into being based on the WeChat platform. This system mainly realizes two main functions: diagnosis and prevention. "Diagnosis" is intended for patients diagnosed with common disease symptoms. Patients can through the system prompt, described his symptoms by the system to determine to what disease, solution common medical and give, in order to help ordinary patients quickly understand their illness, to provide convenient services for the health of the people. At the same time, the "prevention" is to provide seasons prone diseases and prevention method for users. Users To submit their own need to be aware of the season, system returns to the user of the season prone diseases and preventive measures, in order to help users in a timely manner to prevent seasonal diseases. In the process of system development, the main use of the three layer C/S structure and MVC mode. The main layer and user application layer; logic using Baidu App Engine BAE and WeChat servers communicate through mmtls communication protocol to achieve data interoperability, complete system and user interaction function; according to the number of PHP language and MySQL database using layer construction Set up the support system and the operation of the data source through PHP code programming.

Keywords: WeChat public platform; medical service; disease prevention; BAE; PHP.

摘要 1

Abstract 2

第一章 绪论 5

1.1课题背景 5

1.2课题研究现状 5

1.2.1医疗服务现状 5

1.2.2国内外研究现状 5

1.3课题研究意义 6

1.4论文结构 7

第二章 相关技术介绍 8

2.1微信公众平台 8

2.1.1微信公众平台简介 8

2.1.2微信公众平台的功能 8

2.2 PHP语言介绍 9

2.3百度应用引擎BAE 9

2.4 三层C/S架构介绍 10

2.5本章小结 11

第三章 需求分析与总体设计 12

3.1需求分析 12

3.1.1系统角色分析 12

3.1.2系统功能性需求 14

3.1.3系统非功能性需求 15

3.2系统总体设计 16

3.2.1系统架构设计 16

3.2.2系统功能结构设计 17

3.2.3系统总体工作流程设计 18

3.3数据库设计 19

3.3.1数据库概念设计 19

3.3.2数据库表结构设计 20

3.4本章小结 21

第四章 详细设计和实现 22

4.1医疗信息管理模块的详细设计 22

4.1.1病情症状管理模块 22

4.1.2就诊结果建议模块 23

4.1.3季节疾病预防方法管理模块 24

4.2服务器通讯模块的详细设计 25

4.2.1接入微信公众平台 25

4.2.2接收消息 26

4.2.3回复消息 26

4.2.4接收事件响应 27

4.3系统实现 28

4.3.1系统的实现工具与环境 28

4.3.2核心代码分析 28

4.3.3系统主要运行界面 30

4.4本章小结 33

第五章 系统测试 34

5.1测试的目的和方法 34

5.2功能测试 34

5.2.1测试的基本配置 34

5.2.2测试用例 34

5.3 本章小结 38

第六章 总结与展望 39

6.1工作总结 39

6.2工作展望 39

致谢 41

参考文献 42

绪论

1.1课题背景

据相关统计,截止到2016年12月,我国移动智能终端的数目高达13.7亿,较2014年在数目上增长了3.1亿。移动智能机的广泛普及使得各种移动应用纷纷涌入我们的日常生活,并且这些应用涉及的领域也越来越广泛,O2O越来越受欢迎,用户的需求越来越趋向于多元化,行业的分化也更细。社交、通讯、视频、游戏、电商、教育、旅游、医疗、出行、餐饮等,移动互联网开始进入高度的发展期。

腾讯公司开发的微信软件,不仅是在移动网络时代应运而生,并且微信还推动了移动互联网的高速发展,更是潜移默化地影响着我们的生活习惯,也加速了其他领域的变革。我们体验着微信在交流上、工作上以及生活上带给我们的改变。微信公众号作为微信的一部分,提供了全新的展现,该服务平台在企业、政府、电商、媒体、公众机等得到了不同程度的应用。本篇论文就是基于微信平台的二次开发应用和实现,基于微信平台的医疗服务系统在医疗上实现更好的为患者、为用户提供更便利的服务,以此改善“三长一短”的就医状态,为就诊患者提供更加方便更加快捷的就诊服务,完善医院的移动互联网服务模式,加速信息现代化服务模式的发展[1]

剩余内容已隐藏,请支付后下载全文,论文总字数:26835字

您需要先支付 80元 才能查看全部内容!立即支付

企业微信

Copyright © 2010-2022 毕业论文网 站点地图