首页 Java 531基于SSM/Java的智慧医疗系统平台的设计与实现
531基于SSM/Java的智慧医疗系统平台的设计与实现
作品编号:922
关注人气:1762
文件包括:设计源码+数据库+论文+开题+任务书
设计大小:41.85 M
开发语言:Java
开发数据库:MySQL
开发环境:Eclipse+Tomcat8+JDK1.8
原价:900元
现价:90元
下载说明

本作品里面包括调试教程和开发工具和软件,可自行下载根据教程进行调试!

如需技术协助调试,本站收取50元作品调试费!点此申请调试

如果上面没有找到适合您需求的作品,您可联系我们为您定做,定做的作品完全按照您的功能需求来做,并且后期三包,包调试,包讲解,包修改直到通过为止。

  • 作品介绍
  • 项目目录
  • 论文目录
  • 论文预览

基于SSM的医院挂号就诊系统就是为了方便患者就医,同时提高医生诊断效率、改善就医环境。主要功能有:

患者根据自己注册的健康卡号或身份证进行挂号,分当天挂号和预约挂号,也可以取消预约,查询预约情况。患者可以充值缴费,预交检查费,预交挂号费等。也可以在健康卡中留存余额用于医院各项缴费。最后,患者还可以查看各科室医生情况,查看报告。医生登录自己的账号,可以在医生门诊页面看到患者挂号情况,根据门诊号依次诊断。医生根据患者的健康卡号,病情情况编辑检查单。检查单包括患者检查的项目,检查的地址,注意事项等信息。医生在患者用药界面搜索药名为患者开药,可以设置用药量。此外,医生还可以更新值班信息,查看患者报告,录入患者就诊情况形成电子病历。系统管理员主要是对患者信息,医生信息,报告信息,药品信息的增删改查。

本系统主要分为四大部分:患者功能模块,医生功能模块,管理员功能模块和其他功能模块。其中患者功能模块主要包括挂号,浏览科室,查询报告,办理健康卡,并且可以使用智能导诊功能选择科室。医生功能模块包括查询患者挂号情况,上传个人简介,开检查单,为患者用药,查看患者报告,录入患者就诊情况形成电子病历。管理员功能模块包括对患者信息、医生信息,药品信息,报告信息进行管理。最后,其他功能模块包括患者和医生的登陆注册,患者的充值缴费功能。

    
卷 软件 的文件夹 PATH 列表
卷序列号为 0008-B552
D:\TEST\源码
│  hospital.sql
│  任务书.doc
│  医院挂号.doc
│  开题报告-医院挂号就诊系统1.doc
│ 
└─hospital
    │  .classpath
    │  .project
    │ 
    ├─.settings
    │      .jsdtscope
    │      com.genuitec.eclipse.core.prefs
    │      org.eclipse.core.resources.prefs
    │      org.eclipse.jdt.core.prefs
    │      org.eclipse.jst.j2ee.ejb.annotations.xdoclet.prefs
    │      org.eclipse.wst.common.component
    │      org.eclipse.wst.common.project.facet.core.xml
    │      org.eclipse.wst.jsdt.ui.superType.container
    │      org.eclipse.wst.jsdt.ui.superType.name
    │      org.eclipse.wst.validation.prefs
    │      org.eclipse.wst.ws.service.policy.prefs
    │     
    ├─build
    │  └─classes
    │      │  config.properties
    │      │  log4j.properties
    │      │  spring-mvc.xml
    │      │  spring-mybatis.xml
    │      │ 
    │      └─com
    │          └─media
    │              ├─bean
    │              │      Daozhen.class
    │              │      Guahao.class
    │              │      Keshi.class
    │              │      User.class
    │              │      Yaopin.class
    │              │     
    │              ├─controller
    │              │      GuahaoController.class
    │              │      HomeController.class
    │              │      KeshiController.class
    │              │      UserController.class
    │              │      YaopinController.class
    │              │     
    │              ├─dao
    │              │      DaozhenMapper.class
    │              │      GuahaoMapper.class
    │              │      KeshiMapper.class
    │              │      UserMapper.class
    │              │      YaopinMapper.class
    │              │     
    │              ├─mapping
    │              │      DaozhenMapper.xml
    │              │      GuahaoMapper.xml
    │              │      KeshiMapper.xml
    │              │      UserMapper.xml
    │              │      YaopinMapper.xml
    │              │     
    │              ├─service
    │              │  │  DaozhenService.class
    │              │  │  GuahaoService.class
    │              │  │  KeshiService.class
    │              │  │  UserService.class
    │              │  │  YaopinService.class
    │              │  │ 
    │              │  └─impl
    │              │          DaozhenServiceImpl.class
    │              │          GuahaoServiceImpl.class
    │              │          KeshiServiceImpl.class
    │              │          UserServiceImpl.class
    │              │          YaopinServiceImpl.class
    │              │         
    │              └─util
    │                  │  ApplyWriteUtil.class
    │                  │  ConstantsUtil.class
    │                  │  CopyFile.class
    │                  │  DownoadUtil.class
    │                  │  FileDownload.class
    │                  │  FileUpload.class
    │                  │  MD5Util.class
    │                  │ 
    │                  └─filter
    │                          SessionFilter.class
    │                         
    ├─src
    │  │  config.properties
    │  │  log4j.properties
    │  │  spring-mvc.xml
    │  │  spring-mybatis.xml
    │  │ 
    │  └─com
    │      └─media
    │          ├─bean
    │          │      Daozhen.java
    │          │      Guahao.java
    │          │      Keshi.java
    │          │      User.java
    │          │      Yaopin.java
    │          │     
    │          ├─controller
    │          │      GuahaoController.java
    │          │      HomeController.java
    │          │      KeshiController.java
    │          │      UserController.java
    │          │      YaopinController.java
    │          │     
    │          ├─dao
    │          │      DaozhenMapper.java
    │          │      GuahaoMapper.java
    │          │      KeshiMapper.java
    │          │      UserMapper.java
    │          │      YaopinMapper.java
    │          │     
    │          ├─mapping
    │          │      DaozhenMapper.xml
    │          │      GuahaoMapper.xml
    │          │      KeshiMapper.xml
    │          │      UserMapper.xml
    │          │      YaopinMapper.xml
    │          │     
    │          ├─service
    │          │  │  DaozhenService.java
    │          │  │  GuahaoService.java
    │          │  │  KeshiService.java
    │          │  │  UserService.java
    │          │  │  YaopinService.java
    │          │  │ 
    │          │  └─impl
    │          │          DaozhenServiceImpl.java
    │          │          GuahaoServiceImpl.java
    │          │          KeshiServiceImpl.java
    │          │          UserServiceImpl.java
    │          │          YaopinServiceImpl.java
    │          │         
    │          └─util
    │              │  ApplyWriteUtil.java
    │              │  ConstantsUtil.java
    │              │  CopyFile.java
    │              │  DownoadUtil.java
    │              │  FileDownload.java
    │              │  FileUpload.java
    │              │  MD5Util.java
    │              │ 
    │              └─filter
    │                      SessionFilter.java
    │                     
    └─WebRoot
        ├─META-INF
        │      MANIFEST.MF
        │     
        ├─web
        │  ├─ckeditor
        │  │  │  build-config.js
        │  │  │  CHANGES.md
        │  │  │  ckeditor.js
        │  │  │  config.js
        │  │  │  contents.css
        │  │  │  LICENSE.md
        │  │  │  README.md
        │  │  │  styles.js
        │  │  │ 
        │  │  ├─adapters
        │  │  │      jquery.js
        │  │  │     
        │  │  ├─lang
        │  │  │      af.js
        │  │  │      ar.js
        │  │  │      bg.js
        │  │  │      bn.js
        │  │  │      bs.js
        │  │  │      ca.js
        │  │  │      cs.js
        │  │  │      cy.js
        │  │  │      da.js
        │  │  │      de.js
        │  │  │      el.js
        │  │  │      en-au.js
        │  │  │      en-ca.js
        │  │  │      en-gb.js
        │  │  │      en.js
        │  │  │      eo.js
        │  │  │      es.js
        │  │  │      et.js
        │  │  │      eu.js
        │  │  │      fa.js
        │  │  │      fi.js
        │  │  │      fo.js
        │  │  │      fr-ca.js
        │  │  │      fr.js
        │  │  │      gl.js
        │  │  │      gu.js
        │  │  │      he.js
        │  │  │      hi.js
        │  │  │      hr.js
        │  │  │      hu.js
        │  │  │      id.js
        │  │  │      is.js
        │  │  │      it.js
        │  │  │      ja.js
        │  │  │      ka.js
        │  │  │      km.js
        │  │  │      ko.js
        │  │  │      ku.js
        │  │  │      lt.js
        │  │  │      lv.js
        │  │  │      mk.js
        │  │  │      mn.js
        │  │  │      ms.js
        │  │  │      nb.js
        │  │  │      nl.js
        │  │  │      no.js
        │  │  │      pl.js
        │  │  │      pt-br.js
        │  │  │      pt.js
        │  │  │      ro.js
        │  │  │      ru.js
        │  │  │      si.js
        │  │  │      sk.js
        │  │  │      sl.js
        │  │  │      sq.js
        │  │  │      sr-latn.js
        │  │  │      sr.js
        │  │  │      sv.js
        │  │  │      th.js
        │  │  │      tr.js
        │  │  │      tt.js
        │  │  │      ug.js
        │  │  │      uk.js
        │  │  │      vi.js
        │  │  │      zh-cn.js
        │  │  │      zh.js
        │  │  │     
        │  │  ├─plugins
        │  │  │  │  icons.png
        │  │  │  │  icons_hidpi.png
        │  │  │  │ 
        │  │  │  ├─a11yhelp
        │  │  │  │  └─dialogs
        │  │  │  │      │  a11yhelp.js
        │  │  │  │      │ 
        │  │  │  │      └─lang
        │  │  │  │              af.js
        │  │  │  │              ar.js
        │  │  │  │              bg.js
        │  │  │  │              ca.js
        │  │  │  │              cs.js
        │  │  │  │              cy.js
        │  │  │  │              da.js
        │  │  │  │              de.js
        │  │  │  │              el.js
        │  │  │  │              en-gb.js
        │  │  │  │              en.js
        │  │  │  │              eo.js
        │  │  │  │              es.js
        │  │  │  │              et.js
        │  │  │  │              eu.js
        │  │  │  │              fa.js
        │  │  │  │              fi.js
        │  │  │  │              fo.js
        │  │  │  │              fr-ca.js
        │  │  │  │              fr.js
        │  │  │  │              gl.js
        │  │  │  │              gu.js
        │  │  │  │              he.js
        │  │  │  │              hi.js
        │  │  │  │              hr.js
        │  │  │  │              hu.js
        │  │  │  │              id.js
        │  │  │  │              it.js
        │  │  │  │              ja.js
        │  │  │  │              km.js
        │  │  │  │              ko.js
        │  │  │  │              ku.js
        │  │  │  │              lt.js
        │  │  │  │              lv.js
        │  │  │  │              mk.js
        │  │  │  │              mn.js
        │  │  │  │              nb.js
        │  │  │  │              nl.js
        │  │  │  │              no.js
        │  │  │  │              pl.js
        │  │  │  │              pt-br.js
        │  │  │  │              pt.js
        │  │  │  │              ro.js
        │  │  │  │              ru.js
        │  │  │  │              si.js
        │  │  │  │              sk.js
        │  │  │  │              sl.js
        │  │  │  │              sq.js
        │  │  │  │              sr-latn.js
        │  │  │  │              sr.js
        │  │  │  │              sv.js
        │  │  │  │              th.js
        │  │  │  │              tr.js
        │  │  │  │              tt.js
        │  │  │  │              ug.js
        │  │  │  │              uk.js
        │  │  │  │              vi.js
        │  │  │  │              zh-cn.js
        │  │  │  │              zh.js
        │  │  │  │              _translationstatus.txt
        │  │  │  │             
        │  │  │  ├─about
        │  │  │  │  └─dialogs
        │  │  │  │      │  about.js
        │  │  │  │      │  logo_ckeditor.png
        │  │  │  │      │ 
        │  │  │  │      └─hidpi
        │  │  │  │              logo_ckeditor.png
        │  │  │  │             
        │  │  │  ├─clipboard
        │  │  │  │  └─dialogs
        │  │  │  │          paste.js
        │  │  │  │         
        │  │  │  ├─colordialog
        │  │  │  │  └─dialogs
        │  │  │  │          colordialog.js
        │  │  │  │         
        │  │  │  ├─dialog
        │  │  │  │      dialogDefinition.js
        │  │  │  │     
        │  │  │  ├─div
        │  │  │  │  └─dialogs
        │  │  │  │          div.js
        │  │  │  │         
        │  │  │  ├─find
        │  │  │  │  └─dialogs
        │  │  │  │          find.js
        │  │  │  │         
        │  │  │  ├─flash
        │  │  │  │  ├─dialogs
        │  │  │  │  │      flash.js
        │  │  │  │  │     
        │  │  │  │  └─images
        │  │  │  │          placeholder.png
        │  │  │  │         
        │  │  │  ├─forms
        │  │  │  │  ├─dialogs
        │  │  │  │  │      button.js
        │  │  │  │  │      checkbox.js
        │  │  │  │  │      form.js
        │  │  │  │  │      hiddenfield.js
        │  │  │  │  │      radio.js
        │  │  │  │  │      select.js
        │  │  │  │  │      textarea.js
        │  │  │  │  │      textfield.js
        │  │  │  │  │     
        │  │  │  │  └─images
        │  │  │  │          hiddenfield.gif
        │  │  │  │         
        │  │  │  ├─iframe
        │  │  │  │  ├─dialogs
        │  │  │  │  │      iframe.js
        │  │  │  │  │     
        │  │  │  │  └─images
        │  │  │  │          placeholder.png
        │  │  │  │         
        │  │  │  ├─image
        │  │  │  │  ├─dialogs
        │  │  │  │  │      image.js
        │  │  │  │  │     
        │  │  │  │  └─images
        │  │  │  │          noimage.png
        │  │  │  │         
        │  │  │  ├─link
        │  │  │  │  ├─dialogs
        │  │  │  │  │      anchor.js
        │  │  │  │  │      link.js
        │  │  │  │  │     
        │  │  │  │  └─images
        │  │  │  │      │  anchor.png
        │  │  │  │      │ 
        │  │  │  │      └─hidpi
        │  │  │  │              anchor.png
        │  │  │  │             
        │  │  │  ├─liststyle
        │  │  │  │  └─dialogs
        │  │  │  │          liststyle.js
        │  │  │  │         
        │  │  │  ├─magicline
        │  │  │  │  └─images
        │  │  │  │      │  icon-rtl.png
        │  │  │  │      │  icon.png
        │  │  │  │      │ 
        │  │  │  │      └─hidpi
        │  │  │  │              icon-rtl.png
        │  │  │  │              icon.png
        │  │  │  │             
        │  │  │  ├─pagebreak
        │  │  │  │  └─images
        │  │  │  │          pagebreak.gif
        │  │  │  │         
        │  │  │  ├─pastefromword
        │  │  │  │  └─filter
        │  │  │  │          default.js
        │  │  │  │         
        │  │  │  ├─preview
        │  │  │  │      preview.html
        │  │  │  │     
        │  │  │  ├─scayt
        │  │  │  │  │  CHANGELOG.md
        │  │  │  │  │  LICENSE.md
        │  │  │  │  │  README.md
        │  │  │  │  │ 
        │  │  │  │  └─dialogs
        │  │  │  │          options.js
        │  │  │  │          toolbar.css
        │  │  │  │         
        │  │  │  ├─showblocks
        │  │  │  │  └─images
        │  │  │  │          block_address.png
        │  │  │  │          block_blockquote.png
        │  │  │  │          block_div.png
        │  │  │  │          block_h1.png
        │  │  │  │          block_h2.png
        │  │  │  │          block_h3.png
        │  │  │  │          block_h4.png
        │  │  │  │          block_h5.png
        │  │  │  │          block_h6.png
        │  │  │  │          block_p.png
        │  │  │  │          block_pre.png
        │  │  │  │         
        │  │  │  ├─smiley
        │  │  │  │  ├─dialogs
        │  │  │  │  │      smiley.js
        │  │  │  │  │     
        │  │  │  │  └─images
        │  │  │  │          angel_smile.gif
        │  │  │  │          angel_smile.png
        │  │  │  │          angry_smile.gif
        │  │  │  │          angry_smile.png
        │  │  │  │          broken_heart.gif
        │  │  │  │          broken_heart.png
        │  │  │  │          confused_smile.gif
        │  │  │  │          confused_smile.png
        │  │  │  │          cry_smile.gif
        │  │  │  │          cry_smile.png
        │  │  │  │          devil_smile.gif
        │  │  │  │          devil_smile.png
        │  │  │  │          embaressed_smile.gif
        │  │  │  │          embarrassed_smile.gif
        │  │  │  │          embarrassed_smile.png
        │  │  │  │          envelope.gif
        │  │  │  │          envelope.png
        │  │  │  │          heart.gif
        │  │  │  │          heart.png
        │  │  │  │          kiss.gif
        │  │  │  │          kiss.png
        │  │  │  │          lightbulb.gif
        │  │  │  │          lightbulb.png
        │  │  │  │          omg_smile.gif
        │  │  │  │          omg_smile.png
        │  │  │  │          regular_smile.gif
        │  │  │  │          regular_smile.png
        │  │  │  │          sad_smile.gif
        │  │  │  │          sad_smile.png
        │  │  │  │          shades_smile.gif
        │  │  │  │          shades_smile.png
        │  │  │  │          teeth_smile.gif
        │  │  │  │          teeth_smile.png
        │  │  │  │          thumbs_down.gif
        │  │  │  │          thumbs_down.png
        │  │  │  │          thumbs_up.gif
        │  │  │  │          thumbs_up.png
        │  │  │  │          tongue_smile.gif
        │  │  │  │          tongue_smile.png
        │  │  │  │          tounge_smile.gif
        │  │  │  │          whatchutalkingabout_smile.gif
        │  │  │  │          whatchutalkingabout_smile.png
        │  │  │  │          wink_smile.gif
        │  │  │  │          wink_smile.png
        │  │  │  │         
        │  │  │  ├─specialchar
        │  │  │  │  └─dialogs
        │  │  │  │      │  specialchar.js
        │  │  │  │      │ 
        │  │  │  │      └─lang
        │  │  │  │              af.js
        │  │  │  │              ar.js
        │  │  │  │              bg.js
        │  │  │  │              ca.js
        │  │  │  │              cs.js
        │  │  │  │              cy.js
        │  │  │  │              da.js
        │  │  │  │              de.js
        │  │  │  │              el.js
        │  │  │  │              en-gb.js
        │  │  │  │              en.js
        │  │  │  │              eo.js
        │  │  │  │              es.js
        │  │  │  │              et.js
        │  │  │  │              eu.js
        │  │  │  │              fa.js
        │  │  │  │              fi.js
        │  │  │  │              fr-ca.js
        │  │  │  │              fr.js
        │  │  │  │              gl.js
        │  │  │  │              he.js
        │  │  │  │              hr.js
        │  │  │  │              hu.js
        │  │  │  │              id.js
        │  │  │  │              it.js
        │  │  │  │              ja.js
        │  │  │  │              km.js
        │  │  │  │              ko.js
        │  │  │  │              ku.js
        │  │  │  │              lt.js
        │  │  │  │              lv.js
        │  │  │  │              nb.js
        │  │  │  │              nl.js
        │  │  │  │              no.js
        │  │  │  │              pl.js
        │  │  │  │              pt-br.js
        │  │  │  │              pt.js
        │  │  │  │              ru.js
        │  │  │  │              si.js
        │  │  │  │              sk.js
        │  │  │  │              sl.js
        │  │  │  │              sq.js
        │  │  │  │              sv.js
        │  │  │  │              th.js
        │  │  │  │              tr.js
        │  │  │  │              tt.js
        │  │  │  │              ug.js
        │  │  │  │              uk.js
        │  │  │  │              vi.js
        │  │  │  │              zh-cn.js
        │  │  │  │              zh.js
        │  │  │  │              _translationstatus.txt
        │  │  │  │             
        │  │  │  ├─table
        │  │  │  │  └─dialogs
        │  │  │  │          table.js
        │  │  │  │         
        │  │  │  ├─tabletools
        │  │  │  │  └─dialogs
        │  │  │  │          tableCell.js
        │  │  │  │         
        │  │  │  ├─templates
        │  │  │  │  ├─dialogs
        │  │  │  │  │      templates.css
        │  │  │  │  │      templates.js
        │  │  │  │  │     
        │  │  │  │  └─templates
        │  │  │  │      │  default.js
        │  │  │  │      │ 
        │  │  │  │      └─images
        │  │  │  │              template1.gif
        │  │  │  │              template2.gif
        │  │  │  │              template3.gif
        │  │  │  │             
        │  │  │  └─wsc
        │  │  │      │  LICENSE.md
        │  │  │      │  README.md
        │  │  │      │ 
        │  │  │      └─dialogs
        │  │  │              ciframe.html
        │  │  │              tmpFrameset.html
        │  │  │              wsc.css
        │  │  │              wsc.js
        │  │  │              wsc_ie.js
        │  │  │             
        │  │  ├─samples
        │  │  │  │  index.html
        │  │  │  │ 
        │  │  │  ├─css
        │  │  │  │      samples.css
        │  │  │  │     
        │  │  │  ├─img
        │  │  │  │      github-top.png
        │  │  │  │      header-bg.png
        │  │  │  │      header-separator.png
        │  │  │  │      logo.png
        │  │  │  │      navigation-tip.png
        │  │  │  │     
        │  │  │  ├─js
        │  │  │  │      sample.js
        │  │  │  │      sf.js
        │  │  │  │     
        │  │  │  ├─old
        │  │  │  │  │  ajax.html
        │  │  │  │  │  api.html
        │  │  │  │  │  appendto.html
        │  │  │  │  │  datafiltering.html
        │  │  │  │  │  divreplace.html
        │  │  │  │  │  index.html
        │  │  │  │  │  inlineall.html
        │  │  │  │  │  inlinebycode.html
        │  │  │  │  │  inlinetextarea.html
        │  │  │  │  │  jquery.html
        │  │  │  │  │  readonly.html
        │  │  │  │  │  replacebyclass.html
        │  │  │  │  │  replacebycode.html
        │  │  │  │  │  sample.css
        │  │  │  │  │  sample.js
        │  │  │  │  │  sample_posteddata.php
        │  │  │  │  │  tabindex.html
        │  │  │  │  │  uicolor.html
        │  │  │  │  │  uilanguages.html
        │  │  │  │  │  xhtmlstyle.html
        │  │  │  │  │ 
        │  │  │  │  ├─assets
        │  │  │  │  │  │  posteddata.php
        │  │  │  │  │  │  sample.jpg
        │  │  │  │  │  │ 
        │  │  │  │  │  ├─inlineall
        │  │  │  │  │  │      logo.png
        │  │  │  │  │  │     
        │  │  │  │  │  ├─outputxhtml
        │  │  │  │  │  │      outputxhtml.css
        │  │  │  │  │  │     
        │  │  │  │  │  └─uilanguages
        │  │  │  │  │          languages.js
        │  │  │  │  │         
        │  │  │  │  ├─dialog
        │  │  │  │  │  │  dialog.html
        │  │  │  │  │  │ 
        │  │  │  │  │  └─assets
        │  │  │  │  │          my_dialog.js
        │  │  │  │  │         
        │  │  │  │  ├─enterkey
        │  │  │  │  │      enterkey.html
        │  │  │  │  │     
        │  │  │  │  ├─htmlwriter
        │  │  │  │  │  │  outputforflash.html
        │  │  │  │  │  │  outputhtml.html
        │  │  │  │  │  │ 
        │  │  │  │  │  └─assets
        │  │  │  │  │      └─outputforflash
        │  │  │  │  │              outputforflash.fla
        │  │  │  │  │              outputforflash.swf
        │  │  │  │  │              swfobject.js
        │  │  │  │  │             
        │  │  │  │  ├─magicline
        │  │  │  │  │      magicline.html
        │  │  │  │  │     
        │  │  │  │  ├─toolbar
        │  │  │  │  │      toolbar.html
        │  │  │  │  │     
        │  │  │  │  └─wysiwygarea
        │  │  │  │          fullpage.html
        │  │  │  │         
        │  │  │  └─toolbarconfigurator
        │  │  │      │  index.html
        │  │  │      │ 
        │  │  │      ├─css
        │  │  │      │      fontello.css
        │  │  │      │     
        │  │  │      ├─font
        │  │  │      │      config.json
        │  │  │      │      fontello.eot
        │  │  │      │      fontello.svg
        │  │  │      │      fontello.ttf
        │  │  │      │      fontello.woff
        │  │  │      │      LICENSE.txt
        │  │  │      │     
        │  │  │      ├─js
        │  │  │      │      abstracttoolbarmodifier.js
        │  │  │      │      fulltoolbareditor.js
        │  │  │      │      toolbarmodifier.js
        │  │  │      │      toolbartextmodifier.js
        │  │  │      │     
        │  │  │      └─lib
        │  │  │          └─codemirror
        │  │  │                  codemirror.css
        │  │  │                  codemirror.js
        │  │  │                  javascript.js
        │  │  │                  LICENSE
        │  │  │                  neo.css
        │  │  │                  show-hint.css
        │  │  │                  show-hint.js
        │  │  │                 
        │  │  └─skins
        │  │      └─moono
        │  │          │  dialog.css
        │  │          │  dialog_ie.css
        │  │          │  dialog_ie7.css
        │  │          │  dialog_ie8.css
        │  │          │  dialog_iequirks.css
        │  │          │  editor.css
        │  │          │  editor_gecko.css
        │  │          │  editor_ie.css
        │  │          │  editor_ie7.css
        │  │          │  editor_ie8.css
        │  │          │  editor_iequirks.css
        │  │          │  icons.png
        │  │          │  icons_hidpi.png
        │  │          │  readme.md
        │  │          │ 
        │  │          └─images
        │  │              │  arrow.png
        │  │              │  close.png
        │  │              │  lock-open.png
        │  │              │  lock.png
        │  │              │  refresh.png
        │  │              │  spinner.gif
        │  │              │ 
        │  │              └─hidpi
        │  │                      close.png
        │  │                      lock-open.png
        │  │                      lock.png
        │  │                      refresh.png
        │  │                     
        │  ├─easyui
        │  │  └─1.3.6
        │  │      │  changelog.txt
        │  │      │  easyloader.js
        │  │      │  jquery.easyui.min.js
        │  │      │  jquery.min.js
        │  │      │  licence_gpl.txt
        │  │      │  readme.txt
        │  │      │ 
        │  │      ├─locale
        │  │      │      easyui-lang-af.js
        │  │      │      easyui-lang-ar.js
        │  │      │      easyui-lang-bg.js
        │  │      │      easyui-lang-ca.js
        │  │      │      easyui-lang-cs.js
        │  │      │      easyui-lang-cz.js
        │  │      │      easyui-lang-da.js
        │  │      │      easyui-lang-de.js
        │  │      │      easyui-lang-el.js
        │  │      │      easyui-lang-en.js
        │  │      │      easyui-lang-es.js
        │  │      │      easyui-lang-fr.js
        │  │      │      easyui-lang-it.js
        │  │      │      easyui-lang-jp.js
        │  │      │      easyui-lang-nl.js
        │  │      │      easyui-lang-pl.js
        │  │      │      easyui-lang-pt_BR.js
        │  │      │      easyui-lang-ru.js
        │  │      │      easyui-lang-sv_SE.js
        │  │      │      easyui-lang-tr.js
        │  │      │      easyui-lang-zh_CN.js
        │  │      │      easyui-lang-zh_TW.js
        │  │      │     
        │  │      ├─plugins
        │  │      │      jquery.accordion.js
        │  │      │      jquery.calendar.js
        │  │      │      jquery.combo.js
        │  │      │      jquery.combobox.js
        │  │      │      jquery.combogrid.js
        │  │      │      jquery.combotree.js
        │  │      │      jquery.datagrid.js
        │  │      │      jquery.datebox.js
        │  │      │      jquery.datetimebox.js
        │  │      │      jquery.dialog.js
        │  │      │      jquery.draggable.js
        │  │      │      jquery.droppable.js
        │  │      │      jquery.form.js
        │  │      │      jquery.layout.js
        │  │      │      jquery.linkbutton.js
        │  │      │      jquery.menu.js
        │  │      │      jquery.menubutton.js
        │  │      │      jquery.messager.js
        │  │      │      jquery.numberbox.js
        │  │      │      jquery.numberspinner.js
        │  │      │      jquery.pagination.js
        │  │      │      jquery.panel.js
        │  │      │      jquery.parser.js
        │  │      │      jquery.progressbar.js
        │  │      │      jquery.propertygrid.js
        │  │      │      jquery.resizable.js
        │  │      │      jquery.searchbox.js
        │  │      │      jquery.slider.js
        │  │      │      jquery.spinner.js
        │  │      │      jquery.splitbutton.js
        │  │      │      jquery.tabs.js
        │  │      │      jquery.timespinner.js
        │  │      │      jquery.tooltip.js
        │  │      │      jquery.tree.js
        │  │      │      jquery.treegrid.js
        │  │      │      jquery.validatebox.js
        │  │      │      jquery.window.js
        │  │      │     
        │  │      ├─src
        │  │      │      easyloader.js
        │  │      │      jquery.accordion.js
        │  │      │      jquery.calendar.js
        │  │      │      jquery.combobox.js
        │  │      │      jquery.datebox.js
        │  │      │      jquery.draggable.js
        │  │      │      jquery.droppable.js
        │  │      │      jquery.form.js
        │  │      │      jquery.linkbutton.js
        │  │      │      jquery.menu.js
        │  │      │      jquery.parser.js
        │  │      │      jquery.progressbar.js
        │  │      │      jquery.propertygrid.js
        │  │      │      jquery.resizable.js
        │  │      │      jquery.slider.js
        │  │      │      jquery.tabs.js
        │  │      │      jquery.window.js
        │  │      │     
        │  │      └─themes
        │  │          │  icon.css
        │  │          │ 
        │  │          ├─black
        │  │          │  │  accordion.css
        │  │          │  │  calendar.css
        │  │          │  │  combo.css
        │  │          │  │  combobox.css
        │  │          │  │  datagrid.css
        │  │          │  │  datebox.css
        │  │          │  │  dialog.css
        │  │          │  │  easyui.css
        │  │          │  │  layout.css
        │  │          │  │  linkbutton.css
        │  │          │  │  menu.css
        │  │          │  │  menubutton.css
        │  │          │  │  messager.css
        │  │          │  │  numberbox.css
        │  │          │  │  pagination.css
        │  │          │  │  panel.css
        │  │          │  │  progressbar.css
        │  │          │  │  propertygrid.css
        │  │          │  │  searchbox.css
        │  │          │  │  slider.css
        │  │          │  │  spinner.css
        │  │          │  │  splitbutton.css
        │  │          │  │  tabs.css
        │  │          │  │  textbox.css
        │  │          │  │  tooltip.css
        │  │          │  │  tree.css
        │  │          │  │  validatebox.css
        │  │          │  │  window.css
        │  │          │  │ 
        │  │          │  └─images
        │  │          │          accordion_arrows.png
        │  │          │          blank.gif
        │  │          │          calendar_arrows.png
        │  │          │          combo_arrow.png
        │  │          │          datagrid_icons.png
        │  │          │          datebox_arrow.png
        │  │          │          layout_arrows.png
        │  │          │          linkbutton_bg.png
        │  │          │          loading.gif
        │  │          │          menu_arrows.png
        │  │          │          messager_icons.png
        │  │          │          pagination_icons.png
        │  │          │          panel_tools.png
        │  │          │          searchbox_button.png
        │  │          │          slider_handle.png
        │  │          │          spinner_arrows.png
        │  │          │          tabs_icons.png
        │  │          │          tree_icons.png
        │  │          │          validatebox_warning.png
        │  │          │         
        │  │          ├─bootstrap
        │  │          │  │  accordion.css
        │  │          │  │  calendar.css
        │  │          │  │  combo.css
        │  │          │  │  combobox.css
        │  │          │  │  datagrid.css
        │  │          │  │  datebox.css
        │  │          │  │  dialog.css
        │  │          │  │  easyui.css
        │  │          │  │  layout.css
        │  │          │  │  linkbutton.css
        │  │          │  │  menu.css
        │  │          │  │  menubutton.css
        │  │          │  │  messager.css
        │  │          │  │  numberbox.css
        │  │          │  │  pagination.css
        │  │          │  │  panel.css
        │  │          │  │  progressbar.css
        │  │          │  │  propertygrid.css
        │  │          │  │  searchbox.css
        │  │          │  │  slider.css
        │  │          │  │  spinner.css
        │  │          │  │  splitbutton.css
        │  │          │  │  tabs.css
        │  │          │  │  textbox.css
        │  │          │  │  tooltip.css
        │  │          │  │  tree.css
        │  │          │  │  validatebox.css
        │  │          │  │  window.css
        │  │          │  │ 
        │  │          │  └─images
        │  │          │          accordion_arrows.png
        │  │          │          blank.gif
        │  │          │          calendar_arrows.png
        │  │          │          combo_arrow.png
        │  │          │          datagrid_icons.png
        │  │          │          datebox_arrow.png
        │  │          │          layout_arrows.png
        │  │          │          linkbutton_bg.png
        │  │          │          loading.gif
        │  │          │          menu_arrows.png
        │  │          │          messager_icons.png
        │  │          │          pagination_icons.png
        │  │          │          panel_tools.png
        │  │          │          searchbox_button.png
        │  │          │          slider_handle.png
        │  │          │          spinner_arrows.png
        │  │          │          tabs_icons.png
        │  │          │          tree_icons.png
        │  │          │          validatebox_warning.png
        │  │          │         
        │  │          ├─default
        │  │          │  │  accordion.css
        │  │          │  │  calendar.css
        │  │          │  │  combo.css
        │  │          │  │  combobox.css
        │  │          │  │  datagrid.css
        │  │          │  │  datebox.css
        │  │          │  │  dialog.css
        │  │          │  │  easyui.css
        │  │          │  │  layout.css
        │  │          │  │  linkbutton.css
        │  │          │  │  menu.css
        │  │          │  │  menubutton.css
        │  │          │  │  messager.css
        │  │          │  │  numberbox.css
        │  │          │  │  pagination.css
        │  │          │  │  panel.css
        │  │          │  │  progressbar.css
        │  │          │  │  propertygrid.css
        │  │          │  │  searchbox.css
        │  │          │  │  slider.css
        │  │          │  │  spinner.css
        │  │          │  │  splitbutton.css
        │  │          │  │  tabs.css
        │  │          │  │  textbox.css
        │  │          │  │  tooltip.css
        │  │          │  │  tree.css
        │  │          │  │  validatebox.css
        │  │          │  │  window.css
        │  │          │  │ 
        │  │          │  └─images
        │  │          │          accordion_arrows.png
        │  │          │          blank.gif
        │  │          │          calendar_arrows.png
        │  │          │          combo_arrow.png
        │  │          │          datagrid_icons.png
        │  │          │          datebox_arrow.png
        │  │          │          layout_arrows.png
        │  │          │          linkbutton_bg.png
        │  │          │          loading.gif
        │  │          │          menu_arrows.png
        │  │          │          messager_icons.png
        │  │          │          pagination_icons.png
        │  │          │          panel_tools.png
        │  │          │          searchbox_button.png
        │  │          │          slider_handle.png
        │  │          │          spinner_arrows.png
        │  │          │          tabs_icons.png
        │  │          │          tree_icons.png
        │  │          │          validatebox_warning.png
        │  │          │         
        │  │          ├─gray
        │  │          │  │  accordion.css
        │  │          │  │  calendar.css
        │  │          │  │  combo.css
        │  │          │  │  combobox.css
        │  │          │  │  datagrid.css
        │  │          │  │  datebox.css
        │  │          │  │  dialog.css
        │  │          │  │  easyui.css
        │  │          │  │  layout.css
        │  │          │  │  linkbutton.css
        │  │          │  │  menu.css
        │  │          │  │  menubutton.css
        │  │          │  │  messager.css
        │  │          │  │  numberbox.css
        │  │          │  │  pagination.css
        │  │          │  │  panel.css
        │  │          │  │  progressbar.css
        │  │          │  │  propertygrid.css
        │  │          │  │  searchbox.css
        │  │          │  │  slider.css
        │  │          │  │  spinner.css
        │  │          │  │  splitbutton.css
        │  │          │  │  tabs.css
        │  │          │  │  textbox.css
        │  │          │  │  tooltip.css
        │  │          │  │  tree.css
        │  │          │  │  validatebox.css
        │  │          │  │  window.css
        │  │          │  │ 
        │  │          │  └─images
        │  │          │          accordion_arrows.png
        │  │          │          blank.gif
        │  │          │          calendar_arrows.png
        │  │          │          combo_arrow.png
        │  │          │          datagrid_icons.png
        │  │          │          datebox_arrow.png
        │  │          │          layout_arrows.png
        │  │          │          linkbutton_bg.png
        │  │          │          loading.gif
        │  │          │          menu_arrows.png
        │  │          │          messager_icons.png
        │  │          │          pagination_icons.png
        │  │          │          panel_tools.png
        │  │          │          searchbox_button.png
        │  │          │          slider_handle.png
        │  │          │          spinner_arrows.png
        │  │          │          tabs_icons.png
        │  │          │          tree_icons.png
        │  │          │          validatebox_warning.png
        │  │          │         
        │  │          ├─icons
        │  │          │      back.png
        │  │          │      blank.gif
        │  │          │      cancel.png
        │  │          │      cut.png
        │  │          │      edit_add.png
        │  │          │      edit_remove.png
        │  │          │      filesave.png
        │  │          │      filter.png
        │  │          │      help.png
        │  │          │      large_chart.png
        │  │          │      large_clipart.png
        │  │          │      large_picture.png
        │  │          │      large_shapes.png
        │  │          │      large_smartart.png
        │  │          │      man.png
        │  │          │      mini_add.png
        │  │          │      mini_edit.png
        │  │          │      mini_refresh.png
        │  │          │      no.png
        │  │          │      ok.png
        │  │          │      pencil.png
        │  │          │      print.png
        │  │          │      redo.png
        │  │          │      reload.png
        │  │          │      search.png
        │  │          │      sum.png
        │  │          │      tip.png
        │  │          │      undo.png
        │  │          │     
        │  │          └─metro
        │  │              │  accordion.css
        │  │              │  calendar.css
        │  │              │  combo.css
        │  │              │  combobox.css
        │  │              │  datagrid.css
        │  │              │  datebox.css
        │  │              │  dialog.css
        │  │              │  easyui.css
        │  │              │  layout.css
        │  │              │  linkbutton.css
        │  │              │  menu.css
        │  │              │  menubutton.css
        │  │              │  messager.css
        │  │              │  numberbox.css
        │  │              │  pagination.css
        │  │              │  panel.css
        │  │              │  progressbar.css
        │  │              │  propertygrid.css
        │  │              │  searchbox.css
        │  │              │  slider.css
        │  │              │  spinner.css
        │  │              │  splitbutton.css
        │  │              │  tabs.css
        │  │              │  textbox.css
        │  │              │  tooltip.css
        │  │              │  tree.css
        │  │              │  validatebox.css
        │  │              │  window.css
        │  │              │ 
        │  │              └─images
        │  │                      accordion_arrows.png
        │  │                      blank.gif
        │  │                      calendar_arrows.png
        │  │                      combo_arrow.png
        │  │                      datagrid_icons.png
        │  │                      datebox_arrow.png
        │  │                      layout_arrows.png
        │  │                      linkbutton_bg.png
        │  │                      loading.gif
        │  │                      menu_arrows.png
        │  │                      messager_icons.png
        │  │                      pagination_icons.png
        │  │                      panel_tools.png
        │  │                      searchbox_button.png
        │  │                      slider_handle.png
        │  │                      spinner_arrows.png
        │  │                      tabs_icons.png
        │  │                      tree_icons.png
        │  │                      validatebox_warning.png
        │  │                     
        │  ├─static
        │  │  ├─css
        │  │  │  │  adds.css
        │  │  │  │  icon.css
        │  │  │  │  jquery-ui-1.8.20.css
        │  │  │  │ 
        │  │  │  └─icons
        │  │  │          atta.png
        │  │  │          back.png
        │  │  │          blank.gif
        │  │  │          book_open.png
        │  │  │          cancel.png
        │  │  │          clear.png
        │  │  │          cut.png
        │  │  │          down.png
        │  │  │          edit_add.png
        │  │  │          edit_remove.png
        │  │  │          filesave.png
        │  │  │          filter.png
        │  │  │          help.png
        │  │  │          large_chart.png
        │  │  │          large_clipart.png
        │  │  │          large_picture.png
        │  │  │          large_shapes.png
        │  │  │          large_smartart.png
        │  │  │          lock.png
        │  │  │          man.png
        │  │  │          mini_add.png
        │  │  │          mini_edit.png
        │  │  │          mini_refresh.png
        │  │  │          no.png
        │  │  │          ok.png
        │  │  │          pencil.png
        │  │  │          print.png
        │  │  │          redo.png
        │  │  │          reload.png
        │  │  │          search.png
        │  │  │          sum.png
        │  │  │          tip.png
        │  │  │          undo.png
        │  │  │          upload.png
        │  │  │         
        │  │  ├─images
        │  │  │      BackToHome_btn.gif
        │  │  │      bg_header.jpg
        │  │  │      bg_header.png
        │  │  │      head_bg.gif
        │  │  │      head_img.gif
        │  │  │      head_title.gif
        │  │  │      loginbg.gif
        │  │  │      loginbg2.jpg
        │  │  │      loginbg21.jpg
        │  │  │      loginbg3.jpg
        │  │  │      loginbutton.gif
        │  │  │     
        │  │  └─js
        │  │      │  ajaxfileupload.js
        │  │      │  jquery-1.8.0.min.js
        │  │      │  jquery.validate.js
        │  │      │  menus.js
        │  │      │ 
        │  │      ├─guahao
        │  │      │      bingli.js
        │  │      │      guahao.js
        │  │      │      zhenduan.js
        │  │      │     
        │  │      ├─home
        │  │      │      login.js
        │  │      │     
        │  │      ├─keshi
        │  │      │      daozhen.js
        │  │      │      keshi.js
        │  │      │      keshiCheck.js
        │  │      │     
        │  │      ├─user
        │  │      │      chongzhi.js
        │  │      │      modifypwd.js
        │  │      │      user.js
        │  │      │     
        │  │      └─yaopin
        │  │              yaopin.js
        │  │             
        │  └─views
        │      │  footer.jsp
        │      │  header.jsp
        │      │ 
        │      ├─guahao
        │      │      bingli.jsp
        │      │      guahao.jsp
        │      │      zhenduan.jsp
        │      │     
        │      ├─home
        │      │      index.jsp
        │      │      main.jsp
        │      │      register.jsp
        │      │      register2.jsp
        │      │     
        │      ├─keshi
        │      │      daozhen.jsp
        │      │      keshi.jsp
        │      │      keshiCheck.jsp
        │      │     
        │      ├─user
        │      │      chongzhi.jsp
        │      │      modifypwd.jsp
        │      │      user.jsp
        │      │     
        │      └─yaopin
        │              yaopin.jsp
        │             
        └─WEB-INF
            │  web.xml
            │ 
            └─lib
                    aopalliance-1.0.jar
                    aspectjweaver-1.7.4.jar
                    batik-transcoder-1.6.jar
                    bonecp-0.7.1.RELEASE.jar
                    bonecp-spring-0.7.1.RELEASE.jar
                    ckeditor-java-core-3.5.3.jar
                    commons-beanutils-1.8.0.jar
                    commons-codec-1.2.jar
                    commons-collections-3.2.jar
                    commons-fileupload-1.2.2.jar
                    commons-httpclient-3.1.jar
                    commons-io-2.0.1.jar
                    commons-lang-2.4.jar
                    commons-logging-1.1.1.jar
                    commons-logging.jar
                    cxf-2.7.0.jar
                    cxf-manifest.jar
                    cxf-services-sts-core-2.7.0.jar
                    cxf-services-wsn-api-2.7.0.jar
                    cxf-services-wsn-core-2.7.0.jar
                    cxf-xjc-boolean-2.6.0.jar
                    cxf-xjc-bug671-2.6.0.jar
                    cxf-xjc-dv-2.6.0.jar
                    cxf-xjc-runtime-2.6.0.jar
                    cxf-xjc-ts-2.6.0.jar
                    dom4j-1.6.jar
                    druid-0.1.18.jar
                    ezmorph-1.0.6.jar
                    gson-2.1.jar
                    guava-r09.jar
                    httpasyncclient-4.0-beta3.jar
                    httpclient-4.2.1.jar
                    httpcore-4.2.2.jar
                    httpcore-nio-4.2.2.jar
                    HttpUtils.java
                    jackson-all-1.8.10.jar
                    javax.ws.rs-api-2.0-m10.jar
                    jd-common-util-1.2-SNAPSHOT.jar
                    jdom.jar
                    jodconverter-2.2.2.jar
                    json-lib-2.4-jdk15.jar
                    jsoup-1.8.1.jar
                    jsp-api.jar
                    jstl.jar
                    juh-3.0.0.jar
                    jurt-3.0.0.jar
                    jxl-2.6.10.jar
                    log4j-1.2.17.jar
                    mybatis-3.2.6.jar
                    mybatis-spring-1.2.2.jar
                    mysql-connector-java-5.0.8-bin.jar
                    neethi-3.0.2.jar
                    ojdbc6.jar
                    poi-3.12-20150511.jar
                    poi-examples-3.12-20150511.jar
                    poi-excelant-3.12-20150511.jar
                    poi-ooxml-3.12-20150511.jar
                    poi-ooxml-schemas-3.12-20150511.jar
                    poi-scratchpad-3.12-20150511.jar
                    ridl-3.0.0.jar
                    servlet-api.jar
                    slf4j-api-1.7.5.jar
                    slf4j-log4j12-1.7.5.jar
                    spring-aop-3.2.4.RELEASE.jar
                    spring-aspects-3.2.4.RELEASE.jar
                    spring-beans-3.2.4.RELEASE.jar
                    spring-build-src-3.2.4.RELEASE.jar
                    spring-context-3.2.4.RELEASE.jar
                    spring-context-support-3.2.4.RELEASE.jar
                    spring-core-3.2.4.RELEASE.jar
                    spring-expression-3.2.4.RELEASE.jar
                    spring-instrument-3.2.4.RELEASE.jar
                    spring-instrument-tomcat-3.2.4.RELEASE.jar
                    spring-jdbc-3.2.4.RELEASE.jar
                    spring-jms-3.2.4.RELEASE.jar
                    spring-orm-3.2.4.RELEASE.jar
                    spring-oxm-3.2.4.RELEASE.jar
                    spring-struts-3.2.4.RELEASE.jar
                    spring-test-3.2.4.RELEASE.jar
                    spring-tx-3.2.4.RELEASE.jar
                    spring-web-3.2.4.RELEASE.jar
                    spring-webmvc-3.2.4.RELEASE.jar
                    spring-webmvc-portlet-3.2.4.RELEASE.jar
                    sqljdbc4.jar
                    standard.jar
                    unoil-3.0.0.jar
                    wsdl4j-1.6.2.jar
                    xmlbeans-2.6.0.jar
                   


目    录
摘    要    I
Abstract    II
一、引言    1
(一)项目开发的背景    1
(二)项目开发的目的    1
二、可行性分析及总体设计原则    2
(一)可行性分析    2
1.技术可行性    2
2.经济可行性    2
3.社会可行性    3
(二)总体设计原则    3
三、系统分析    5
(一)业务流程分析    5
(二)数据流图    6
(三)数据字典    9
四、系统设计    13
(一)系统功能设计    13
(二)系统数据库设计    14
1.概念结构设计    14
2.逻辑结构设计    18
3.数据库表设计    18
(三)系统开发工具与开发模式的选择    20
1.系统开发工具    20
2.系统设计模式    21
五、系统实现    22
(一)用户模块    22
1.登录及注册管理模块    22
2.首界面    23
3.预约挂号界面    24
4.智能导诊界面    25
5.充值账户界面    26
6.病例管理界面    27
(三)管理员模块    28
1.登录界面    28
2.预约挂号管理界面    28
3.用户管理界面    29
六、性能测试与分析    30
(一)测试的重要性    30
(二)测试实例的研究与选择    30
(三)测试环境与测试条件    31
(四)实例测试    32
(五)系统评价    32
(六)测试结果    33
参 考 文 献    35
致    谢    36


标签:挂号系统,医院挂号预约,就诊挂号系统,医院管理系统

  • 专注毕业设计源码作品
  • 毕业设计源码论文全套
  • 每件作品均测试后上线
  • 提供所有教程和软件下载

Copyright © 2008-2024 jsjbysjw.com . All Rights Reserved. 备案号:苏ICP备2021056683号-4

  • 联系QQ:81677093
  • 微信:bysj1950