实例介绍
自己的毕业设计+论文+答辩ppt,是写的一个基于我家乡市的医院挂号管理系统,可以选择医院、科室、医生、挂号时间,当然后台也都有管理界面。 邮箱注册登录 手机验证码注册登录 前台三种挂号方式 后台对前台数据进行管理 医生的排班管理 ,忘记备份全部数据库,只备份了部分语句了,不过论文里有写数据表的详细设计,可以自己搭建一个;要的人多的话我有时间在写一份,我论文里也有表,可以自己建一下,maven项目管理、git代码托管; 使用了Quartz定时器,处理每个账号违约的问题。 注:需要maven、ssm的基础
【实例截图】
【核心代码】
毕业设计
└── 毕业设计
├── 222015321210033胡济洲.ppt
├── IdeaProjects
│ ├── IdeaProjects.iml
│ ├── pom.xml
│ ├── src
│ │ └── main
│ │ ├── java
│ │ │ └── com
│ │ │ └── edu
│ │ │ └── swu
│ │ │ ├── controller
│ │ │ │ ├── captchaController.java
│ │ │ │ ├── hospitalController.java
│ │ │ │ └── userController.java
│ │ │ ├── mapper
│ │ │ │ ├── AdminMapper.java
│ │ │ │ ├── CategoryMapper.java
│ │ │ │ ├── DepartmentMapper.java
│ │ │ │ ├── DepCategoryMapper.java
│ │ │ │ ├── DepDoctorMapper.java
│ │ │ │ ├── DoctorMapper.java
│ │ │ │ ├── HosCategoryMapper.java
│ │ │ │ ├── HospitalMapper.java
│ │ │ │ └── UserMapper.java
│ │ │ ├── pojo
│ │ │ │ ├── AdminExample.java
│ │ │ │ ├── Admin.java
│ │ │ │ ├── CategoryExample.java
│ │ │ │ ├── Category.java
│ │ │ │ ├── DepartmentExample.java
│ │ │ │ ├── Department.java
│ │ │ │ ├── DepCategoryExample.java
│ │ │ │ ├── DepCategory.java
│ │ │ │ ├── DepDoctorExample.java
│ │ │ │ ├── DepDoctor.java
│ │ │ │ ├── DoctorExample.java
│ │ │ │ ├── Doctor.java
│ │ │ │ ├── HosCategoryExample.java
│ │ │ │ ├── HosCategory.java
│ │ │ │ ├── HospitalExample.java
│ │ │ │ ├── Hospital.java
│ │ │ │ ├── UserExample.java
│ │ │ │ └── User.java
│ │ │ ├── service
│ │ │ │ ├── AdminService.java
│ │ │ │ ├── DoctorService.java
│ │ │ │ ├── HospitalService.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── AdminServiceImpl.java
│ │ │ │ │ ├── DoctorServiceImpl.java
│ │ │ │ │ ├── HospitalServiceImpl.java
│ │ │ │ │ └── UserServiceImpl.java
│ │ │ │ └── UserService.java
│ │ │ └── utils
│ │ │ ├── MD5Util.java
│ │ │ └── MybatisGenerator.java
│ │ ├── resources
│ │ │ ├── generatorConfig.xml
│ │ │ ├── jdbc.properties
│ │ │ ├── mapper
│ │ │ │ ├── AdminMapper.xml
│ │ │ │ ├── CategoryMapper.xml
│ │ │ │ ├── DepartmentMapper.xml
│ │ │ │ ├── DepCategoryMapper.xml
│ │ │ │ ├── DepDoctorMapper.xml
│ │ │ │ ├── DoctorMapper.xml
│ │ │ │ ├── HosCategoryMapper.xml
│ │ │ │ ├── HospitalMapper.xml
│ │ │ │ └── UserMapper.xml
│ │ │ ├── spring
│ │ │ │ ├── applicationContext-dao.xml
│ │ │ │ ├── applicationContext-service.xml
│ │ │ │ ├── applicationContext-trans.xml
│ │ │ │ ├── log4j.properties
│ │ │ │ └── springmvc.xml
│ │ │ └── SqlMapConfig.xml
│ │ └── webapp
│ │ └── WEB-INF
│ │ ├── jsp
│ │ │ ├── head
│ │ │ │ ├── head.jsp
│ │ │ │ ├── headtag.jsp
│ │ │ │ └── menu.jsp
│ │ │ ├── hospital
│ │ │ │ ├── hosIndex.jsp
│ │ │ │ ├── hospitalinfo.jsp
│ │ │ │ └── index.jsp
│ │ │ ├── index.jsp
│ │ │ ├── login.jsp
│ │ │ └── register.jsp
│ │ ├── static
│ │ │ ├── assets
│ │ │ │ ├── date
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── index.css
│ │ │ │ │ └── js
│ │ │ │ │ └── index.js
│ │ │ │ └── ico
│ │ │ │ ├── apple-touch-icon-114-precomposed.png
│ │ │ │ ├── apple-touch-icon-144-precomposed.png
│ │ │ │ ├── apple-touch-icon-57-precomposed.png
│ │ │ │ ├── apple-touch-icon-72-precomposed.png
│ │ │ │ └── favicon.png
│ │ │ ├── bootstrap
│ │ │ │ ├── css
│ │ │ │ │ ├── bootstrap.css
│ │ │ │ │ ├── bootstrap.css.map
│ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ ├── bootstrap-theme.css
│ │ │ │ │ ├── bootstrap-theme.css.map
│ │ │ │ │ ├── bootstrap-theme.min.css
│ │ │ │ │ └── simple-sidebar.css
│ │ │ │ ├── fonts
│ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ │ └── js
│ │ │ │ ├── bootstrap.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── jquery.js
│ │ │ │ ├── jquery.min.js
│ │ │ │ └── npm.js
│ │ │ ├── css
│ │ │ │ ├── custom.css
│ │ │ │ ├── form-elements.css
│ │ │ │ └── style.css
│ │ │ ├── font-awesome
│ │ │ │ ├── css
│ │ │ │ │ ├── font-awesome.css
│ │ │ │ │ └── font-awesome.min.css
│ │ │ │ ├── fonts
│ │ │ │ │ ├── FontAwesome.otf
│ │ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ │ └── fontawesome-webfont.woff2
│ │ │ │ ├── less
│ │ │ │ │ ├── animated.less
│ │ │ │ │ ├── bordered-pulled.less
│ │ │ │ │ ├── core.less
│ │ │ │ │ ├── fixed-width.less
│ │ │ │ │ ├── font-awesome.less
│ │ │ │ │ ├── icons.less
│ │ │ │ │ ├── larger.less
│ │ │ │ │ ├── list.less
│ │ │ │ │ ├── mixins.less
│ │ │ │ │ ├── path.less
│ │ │ │ │ ├── rotated-flipped.less
│ │ │ │ │ ├── stacked.less
│ │ │ │ │ └── variables.less
│ │ │ │ └── scss
│ │ │ │ ├── _animated.scss
│ │ │ │ ├── _bordered-pulled.scss
│ │ │ │ ├── _core.scss
│ │ │ │ ├── _fixed-width.scss
│ │ │ │ ├── font-awesome.scss
│ │ │ │ ├── _icons.scss
│ │ │ │ ├── _larger.scss
│ │ │ │ ├── _list.scss
│ │ │ │ ├── _mixins.scss
│ │ │ │ ├── _path.scss
│ │ │ │ ├── _rotated-flipped.scss
│ │ │ │ ├── _stacked.scss
│ │ │ │ └── _variables.scss
│ │ │ ├── img
│ │ │ │ ├── 1.jpg
│ │ │ │ ├── 2.jpg
│ │ │ │ ├── 3.jpg
│ │ │ │ ├── backgrounds
│ │ │ │ │ ├── 1@2x.jpg
│ │ │ │ │ └── 1.jpg
│ │ │ │ ├── checked.gif
│ │ │ │ ├── doc_nopicture.jpg
│ │ │ │ ├── helpImg
│ │ │ │ │ ├── account.png
│ │ │ │ │ ├── login1.png
│ │ │ │ │ ├── login2.png
│ │ │ │ │ ├── login3.png
│ │ │ │ │ ├── order1.png
│ │ │ │ │ ├── order2.png
│ │ │ │ │ ├── order3.png
│ │ │ │ │ ├── order4.png
│ │ │ │ │ ├── order5.png
│ │ │ │ │ ├── order6.png
│ │ │ │ │ ├── sign1.png
│ │ │ │ │ ├── sign2.png
│ │ │ │ │ └── sign3.png
│ │ │ │ ├── hos.jpg
│ │ │ │ ├── test
│ │ │ │ │ └── qyrm_hospital.png
│ │ │ │ └── unchecked.gif
│ │ │ └── js
│ │ │ ├── captcha.js
│ │ │ ├── distpicker.js
│ │ │ ├── jquery.backstretch.js
│ │ │ ├── jquery.backstretch.min.js
│ │ │ ├── placeholder.js
│ │ │ └── scripts.js
│ │ └── web.xml
│ └── target
│ ├── classes
│ │ ├── com
│ │ │ └── edu
│ │ │ └── swu
│ │ │ ├── controller
│ │ │ │ ├── captchaController.class
│ │ │ │ ├── hospitalController.class
│ │ │ │ └── userController.class
│ │ │ ├── mapper
│ │ │ │ ├── AdminMapper.class
│ │ │ │ ├── CategoryMapper.class
│ │ │ │ ├── DepartmentMapper.class
│ │ │ │ ├── DepCategoryMapper.class
│ │ │ │ ├── DepDoctorMapper.class
│ │ │ │ ├── DoctorMapper.class
│ │ │ │ ├── HosCategoryMapper.class
│ │ │ │ ├── HospitalMapper.class
│ │ │ │ └── UserMapper.class
│ │ │ ├── pojo
│ │ │ │ ├── Admin.class
│ │ │ │ ├── AdminExample$Criteria.class
│ │ │ │ ├── AdminExample$Criterion.class
│ │ │ │ ├── AdminExample$GeneratedCriteria.class
│ │ │ │ ├── AdminExample.class
│ │ │ │ ├── Category.class
│ │ │ │ ├── CategoryExample$Criteria.class
│ │ │ │ ├── CategoryExample$Criterion.class
│ │ │ │ ├── CategoryExample$GeneratedCriteria.class
│ │ │ │ ├── CategoryExample.class
│ │ │ │ ├── Department.class
│ │ │ │ ├── DepartmentExample$Criteria.class
│ │ │ │ ├── DepartmentExample$Criterion.class
│ │ │ │ ├── DepartmentExample$GeneratedCriteria.class
│ │ │ │ ├── DepartmentExample.class
│ │ │ │ ├── DepCategory.class
│ │ │ │ ├── DepCategoryExample$Criteria.class
│ │ │ │ ├── DepCategoryExample$Criterion.class
│ │ │ │ ├── DepCategoryExample$GeneratedCriteria.class
│ │ │ │ ├── DepCategoryExample.class
│ │ │ │ ├── DepDoctor.class
│ │ │ │ ├── DepDoctorExample$Criteria.class
│ │ │ │ ├── DepDoctorExample$Criterion.class
│ │ │ │ ├── DepDoctorExample$GeneratedCriteria.class
│ │ │ │ ├── DepDoctorExample.class
│ │ │ │ ├── Doctor.class
│ │ │ │ ├── DoctorExample$Criteria.class
│ │ │ │ ├── DoctorExample$Criterion.class
│ │ │ │ ├── DoctorExample$GeneratedCriteria.class
│ │ │ │ ├── DoctorExample.class
│ │ │ │ ├── HosCategory.class
│ │ │ │ ├── HosCategoryExample$Criteria.class
│ │ │ │ ├── HosCategoryExample$Criterion.class
│ │ │ │ ├── HosCategoryExample$GeneratedCriteria.class
│ │ │ │ ├── HosCategoryExample.class
│ │ │ │ ├── Hospital.class
│ │ │ │ ├── HospitalExample$Criteria.class
│ │ │ │ ├── HospitalExample$Criterion.class
│ │ │ │ ├── HospitalExample$GeneratedCriteria.class
│ │ │ │ ├── HospitalExample.class
│ │ │ │ ├── User.class
│ │ │ │ ├── UserExample$Criteria.class
│ │ │ │ ├── UserExample$Criterion.class
│ │ │ │ ├── UserExample$GeneratedCriteria.class
│ │ │ │ └── UserExample.class
│ │ │ ├── service
│ │ │ │ ├── AdminService.class
│ │ │ │ ├── HospitalService.class
│ │ │ │ ├── impl
│ │ │ │ │ ├── AdminServiceImpl.class
│ │ │ │ │ ├── HospitalServiceImpl.class
│ │ │ │ │ └── UserServiceImpl.class
│ │ │ │ └── UserService.class
│ │ │ └── utils
│ │ │ ├── MD5Util.class
│ │ │ └── MybatisGenerator.class
│ │ ├── generatorConfig.xml
│ │ ├── jdbc.properties
│ │ ├── mapper
│ │ │ ├── AdminMapper.xml
│ │ │ ├── CategoryMapper.xml
│ │ │ ├── DepartmentMapper.xml
│ │ │ ├── DepCategoryMapper.xml
│ │ │ ├── DepDoctorMapper.xml
│ │ │ ├── DoctorMapper.xml
│ │ │ ├── HosCategoryMapper.xml
│ │ │ ├── HospitalMapper.xml
│ │ │ └── UserMapper.xml
│ │ ├── spring
│ │ │ ├── applicationContext-dao.xml
│ │ │ ├── applicationContext-service.xml
│ │ │ ├── applicationContext-trans.xml
│ │ │ ├── log4j.properties
│ │ │ └── springmvc.xml
│ │ └── SqlMapConfig.xml
│ ├── maven-status
│ │ └── maven-compiler-plugin
│ │ ├── compile
│ │ │ └── default-compile
│ │ │ ├── createdFiles.lst
│ │ │ └── inputFiles.lst
│ │ └── testCompile
│ │ └── default-testCompile
│ │ └── inputFiles.lst
│ └── tmp
│ └── jsp
│ └── org
│ └── apache
│ └── jsp
│ └── WEB_002dINF
│ └── jsp
│ ├── head
│ │ ├── head_jsp.class
│ │ ├── head_jsp.java
│ │ ├── headtag_jsp.class
│ │ ├── headtag_jsp.java
│ │ ├── menu_jsp.class
│ │ └── menu_jsp.java
│ └── hospital
│ ├── hospitalinfo_jsp.class
│ ├── hospitalinfo_jsp.java
│ ├── index_jsp.class
│ └── index_jsp.java
├── 前台用户预约挂号流程.vsdx
├── 毕业设计数据库备份
│ ├── 2.sql
│ ├── 3.sql
│ ├── 医生后台.sql
│ └── 医生挂号.sql
├── 毕业设计资料-图片etc
│ ├── 846ce89b29b44d27bd3ae73bf1814cbc20170623191206.png
│ ├── b1.jpg
│ ├── b2.jpg
│ ├── b3.jpg
│ ├── doctor
│ │ └── null.jpg
│ ├── logo.jpg
│ ├── null.png
│ └── qyrm_hospital.png
├── 胡济洲论文第7次修改-医院挂号管理系统的设计与实现.docx
└── 需求分析.docx
74 directories, 270 files
标签:
网友评论
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)