医院挂号系统

需求:

  1. 科室管理:新增科室。
  2. 医生管理:录入医生信息,以及科室信息。修改医生信息(主要是修改个人信息和科室)。
  3. 坐诊信息设置:可以设置医生当天和未来6天的坐诊情况,包括上午和下午的坐诊时间段和可预约的数量,系统将自动保存到该医生的坐诊信息列表中。
  4. 全部信息展示:按照科室,展示每个医生七天的坐诊情况,需要按照科室归类展示。

bean.Department类

import java.util.ArrayList;
//科室类
public class Department {private String name;    //科室名称private ArrayList<Doctor> doctors = new ArrayList<>();public String getName() {return name;}public void setName(String name) {this.name = name;}public ArrayList<Doctor> getDoctors() {return doctors;}public void setDoctors(ArrayList<Doctor> doctors) {this.doctors = doctors;}public int getNumber(){return doctors.size();}
}

bean.Doctor类

import java.time.LocalDate;
import java.util.ArrayList;public class Doctor {private String doctorId;   //编号private String name;    //姓名private String departmentName;  //部门private String gender;  //性别private int age;        //年龄private String specialty;   //主治方向private LocalDate joinDate; //入职时间private ArrayList<Schedule> schedules = new ArrayList<>();public String getDoctorId() {return doctorId;}public void setDoctorId(String doctorId) {this.doctorId = doctorId;}public String getName() {return name;}public void setName(String name) {this.name = name;}public String getDepartmentName() {return departmentName;}public void setDepartmentName(String departmentName) {this.departmentName = departmentName;}public String getGender() {return gender;}public void setGender(String gender) {this.gender = gender;}public int getAge() {return age;}public void setAge(int age) {this.age = age;}public String getSpecialty() {return specialty;}public void setSpecialty(String specialty) {this.specialty = specialty;}public LocalDate getJoinDate() {return joinDate;}public void setJoinDate(LocalDate joinDate) {this.joinDate = joinDate;}public ArrayList<Schedule> getSchedules() {return schedules;}public void setSchedules(ArrayList<Schedule> schedules) {this.schedules = schedules;}
}

bean.Schedule类

import java.time.LocalDate;
import java.time.LocalTime;//调度类
public class Schedule {private LocalDate today;    //日期private boolean uptate;     //是否排过班,默认是未排班// 上午private boolean morning;    //是否看诊private LocalTime mstart;   //上午看诊时间private LocalTime mend;     //上午截至时间private int moTotalNumber;  //上午接诊的总人数private int mAppointNumber; //上午预约人数//下午private boolean afternoon;    //是否看诊private LocalTime astart;   //下午看诊时间private LocalTime aend;     //下午截至时间private int aTotalNumber;  //下午接诊的总人数private int aAppointNumber; //下午预约人数public LocalDate getToday() {return today;}public void setToday(LocalDate today) {this.today = today;}public boolean isUptate() {return uptate;}public void setUptate(boolean uptate) {this.uptate = uptate;}public boolean isMorning() {return morning;}public void setMorning(boolean morning) {this.morning = morning;}public LocalTime getMstart() {return mstart;}public void setMstart(LocalTime mstart) {this.mstart = mstart;}public LocalTime getMend() {return mend;}public void setMend(LocalTime mend) {this.mend = mend;}public int getMoTotalNumber() {return moTotalNumber;}public void setMoTotalNumber(int moTotalNumber) {this.moTotalNumber = moTotalNumber;}public int getmAppointNumber() {return mAppointNumber;}public void setmAppointNumber(int mAppointNumber) {this.mAppointNumber = mAppointNumber;}public boolean isAfternoon() {return afternoon;}public void setAfternoon(boolean afternoon) {this.afternoon = afternoon;}public LocalTime getAstart() {return astart;}public void setAstart(LocalTime astart) {this.astart = astart;}public LocalTime getAend() {return aend;}public void setAend(LocalTime aend) {this.aend = aend;}public int getaTotalNumber() {return aTotalNumber;}public void setaTotalNumber(int aTotalNumber) {this.aTotalNumber = aTotalNumber;}public int getaAppointNumber() {return aAppointNumber;}public void setaAppointNumber(int aAppointNumber) {this.aAppointNumber = aAppointNumber;}}

 frame.HospitManager类

import com.pt2.bean.Department;
import com.pt2.bean.Doctor;
import com.pt2.bean.Schedule;
import java.time.LocalDate;
import java.time.LocalTime;
import java.util.ArrayList;
import java.util.Scanner;
import java.util.UUID;public class HospitaManager {// 系统需要存储全部科室信息private ArrayList<Department> allDepartments = new ArrayList<>();private Scanner sc = new Scanner(System.in);public void start(){while (true) {System.out.println("=====欢迎进入仁爱医院信息管理系统=====");System.out.println("1.科室管理-添加科室");System.out.println("2.医生管理-录入医生");System.out.println("3.医生管理-医生坐诊设置(可设置当天和未来6天的坐诊情况)");System.out.println("4.医生管理-展示全部医生的坐诊详情(当前和未来6天的坐诊详情)");System.out.println("请输入操作命令:");switch (sc.nextInt()){case 1:addDepartment();break;case 2:addDoctor();break;case 3:setDoctorJob();break;case 4:showAllDoctorInfos();break;default:System.out.println("您输入的命令不正确,请重试!");}}}private void showAllDoctorInfos() {System.out.println("=====全部医生的坐诊详情如下=====");for (int i = 0; i < allDepartments.size(); i++) {Department department = allDepartments.get(i);System.out.println((i+1) + "," + department.getDoctors());System.out.println("-------------------------------------------------");ArrayList<Doctor> doctors = department.getDoctors();for (int j = 0; j < doctors.size(); j++) {Doctor doctor = doctors.get(j);System.out.println(doctor.getName() + "医生的坐班信息如下:");ArrayList<Schedule> schedules = doctor.getSchedules();updateSchedules(schedules); //更新时间for (int k = 0; k < schedules.size(); k++) {Schedule schedule = schedules.get(k);System.out.println(schedule.getToday());if (!schedule.isUptate()){System.out.println("未排班\t\t\t");continue;}if (schedule.isMorning()){System.out.println("坐诊 时间为:" + schedule.getMstart() + "-" + schedule.getMend() + "总数/预约数:" + schedule.getMoTotalNumber());}else{System.out.println("休息");}System.out.println();System.out.println("\t下午\t");if (schedule.isAfternoon()){System.out.println("坐诊 时间为:" + schedule.getAstart() + "-" + schedule.getAend() + "总数/预约数:" + schedule.getaTotalNumber());}else {System.out.println("休息");}}}}}private void setDoctorJob() {System.out.println("=====设置医生的坐诊时间=====");Department department = getDepartmentByUser();if (department == null){System.out.println("当前无任何科室");return;}ArrayList<Doctor> doctors = department.getDoctors();if (doctors.size() == 0){System.out.println("当前科室下无医生");return;}while (true) {System.out.println("当前科室下的医生如下:");for (int i = 0; i < doctors.size(); i++) {Doctor doctor = doctors.get(i);System.out.println((i+1) + "," + doctor.getName());}System.out.println("请输入:");// 接收命令int command = sc.nextInt();if (command < 1 || command > allDepartments.size()){System.out.println("选择有误,请重新确认");continue;}Doctor doctor = doctors.get(command - 1);// 为这个医生设置坐诊情况ArrayList<Schedule> schedules = doctor.getSchedules();// 更新未来其他的时间updateSchedules(schedules);// 修改坐诊信息,依次展示这个医生的坐诊情况for (int i = 0; i < schedules.size(); i++) {Schedule schedule = schedules.get(i);updateDoctorSchedule(schedule);}break;}}private void updateDoctorSchedule(Schedule schedule) {LocalDate today = schedule.getToday();System.out.println(today + "的安排如下:");if (!schedule.isUptate()){System.out.println("未排班\t\t\t");}else {System.out.println("\t上午\t");if (schedule.isMorning()){System.out.println("坐诊 时间为:" + schedule.getMstart() + "-" + schedule.getMend() + "总数/预约数:" + schedule.getMoTotalNumber());}else{System.out.println("休息");}System.out.println();System.out.println("\t下午\t");if (schedule.isAfternoon()){System.out.println("坐诊 时间为:" + schedule.getAstart() + "-" + schedule.getAend() + "总数/预约数:" + schedule.getaTotalNumber());}else {System.out.println("休息");}}System.out.println("是否修改?y/n");String rs = sc.next();if ("y".equals(rs)){schedule.setUptate(true); //表示开始排班了System.out.println("上午是否上班?y/n");String rs2 = sc.next();if ("y".equals(rs2)){schedule.setMorning(true);System.out.println("上班的开始时间和结束时间是:");String start = sc.next();String end = sc.next();System.out.println("可预约人数是:");int number = sc.nextInt();schedule.setMstart(LocalTime.parse(start));schedule.setMend(LocalTime.parse(end));schedule.setMoTotalNumber(number);}else {schedule.setMorning(false);}System.out.println("下午是否上班?y/n");String rs3 = sc.next();if ("y".equals(rs3)){schedule.setAfternoon(true);System.out.println("上班的开始时间和结束时间是:");String start = sc.next();String end = sc.next();System.out.println("可预约人数是:");int number = sc.nextInt();schedule.setAstart(LocalTime.parse(start));schedule.setAend(LocalTime.parse(end));schedule.setaTotalNumber(number);}else {schedule.setAfternoon(false);}}}private void updateSchedules(ArrayList<Schedule> schedules) {if (schedules.size() == 0){for (int i = 0; i <= 6 ; i++) {Schedule schedule = new Schedule();LocalDate now = LocalDate.now();schedule.setToday(now.plusDays(i));schedules.add(schedule);}return;}// 除去过期的时间for (int i = 0; i < schedules.size(); i++) {Schedule schedule = schedules.get(i);LocalDate now = LocalDate.now();LocalDate current = schedule.getToday();if (current.equals(now)){break;}if (current.isBefore(now)){schedules.remove(schedule);i--;}}// 补全当前和未来6天的时间LocalDate last = schedules.get(schedules.size() - 1).getToday();for (int i = 0; i < 7 - schedules.size(); i++) {Schedule schedule = new Schedule();schedule.setToday(last.plusDays(i + 1));schedules.add(schedule);}}private void addDoctor() {System.out.println("=====录入医生=====");while (true) {// 先选择科室Department department = getDepartmentByUser();if (department == null){System.out.println("当前无任何科室");return;}Doctor doctor = new Doctor();doctor.setDepartmentName(department.getName());// 录入医生的iddoctor.setDoctorId(UUID.randomUUID().toString());System.out.println("请输入医生的姓名:");String name = sc.next();doctor.setName(name);System.out.println("请输入医生的性别:");String sex = sc.next();doctor.setGender(sex);System.out.println("请输入医生的年龄:");int age = sc.nextInt();doctor.setAge(age);System.out.println("请输入医生的特长:");String specialty = sc.next();doctor.setSpecialty(specialty);System.out.println("请输入医生的入职时间(格式:yyyy-MM-dd):");String joinDateString = sc.next();LocalDate joinDate = LocalDate.parse(joinDateString);doctor.setJoinDate(joinDate);department.getDoctors().add(doctor);System.out.println("录入医生到该科室成功!");break;}}private Department  getDepartmentByUser() {if (allDepartments.size() == 0){return null;}while (true) {// 先选择科室System.out.println("请选择科室:");for (int i = 0; i < allDepartments.size(); i++) {Department department = allDepartments.get(i);System.out.println((i+1) + "," + department.getName());}System.out.println("请输入:");// 接收命令int command = sc.nextInt();if (command < 1 || command > allDepartments.size()){System.out.println("选择有误,请重新确认");continue;}// 得到科室Department department = allDepartments.get(command - 1);return department;}}private void addDepartment() {System.out.println("=====添加科室=====");OUT:while (true) {System.out.println("请您输入科室名称");String name = sc.next();for (int i = 0; i < allDepartments.size(); i++) {Department department = allDepartments.get(i);System.out.println("您输入的部门名称存在,请重试!");if (department.getName().equals(name)) continue OUT;}Department department = new Department();department.setName(name);allDepartments.add(department);System.out.println("添加科室成功!");break;}}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/636427.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

自然语言处理(Natural Language Processing,NLP)解密

专栏集锦&#xff0c;大佬们可以收藏以备不时之需&#xff1a; Spring Cloud 专栏&#xff1a;http://t.csdnimg.cn/WDmJ9 Python 专栏&#xff1a;http://t.csdnimg.cn/hMwPR Redis 专栏&#xff1a;http://t.csdnimg.cn/Qq0Xc TensorFlow 专栏&#xff1a;http://t.csdni…

Servlet中service()与doGet() doPost() 是什么关系

Servlet&#xff08;Server Applet&#xff09;&#xff0c;全称Java Servlet。是用Java编写的服务器端程序。其主要功能在于交互式地浏览和修改数据&#xff0c;生成动态Web内容。狭义的Servlet是指Java语言实现的一个接口&#xff0c;广义的Servlet是指任何实现了这个Servlet…

关于去除信号中的直流分量效果演示(零频率分量)

本文作者&#xff1a; slience_me 文章目录 关于去除信号中的直流分量效果演示&#xff08;零频率分量&#xff09;1. 效果图展示&#xff1a;2. 快速傅里叶变换FFT3. 相关验证代码 关于去除信号中的直流分量效果演示&#xff08;零频率分量&#xff09; 1. 效果图展示&#x…

JDK 动态代理(Spring AOP 的原理)(面试重点)

代理模式 也叫委托模式.定义&#xff1a;为其他对象提供⼀种代理以控制对这个对象的访问.它的作⽤就是通过提供⼀个代理类,让我们 在调⽤⽬标⽅法的时候,不再是直接对⽬标⽅法进⾏调⽤,⽽是通过代理类间接调⽤&#xff0c;在某些情况下,⼀个对象不适合或者不能直接引⽤另⼀个对…

51单片机蜂鸣器

蜂鸣器 蜂鸣器的工作原理 三极管的工作原理 三极管是一种半导体器件&#xff0c;通常由三个掺杂不同的半导体材料层构成。它常用于放大和开关电路中。三极管的工作原理可简述如下&#xff1a; 放大作用&#xff1a;三极管可以放大电流和电压信号。它的工作原理基于控制一个较大…

利用OpenGL图形库实现人物动画移动效果

使用OpenGL库实现人物动画移动效果需要涉及到更复杂的图形编程和事件处理。以下是一个简单的例子&#xff0c;使用OpenGL和GLUT库实现人物的基本动画移动效果。 确保你已经安装了OpenGL和GLUT。你可以使用包管理器或者从官方网站下载并安装。 一、如果你已经安装过了OpenGL和…

Web前端与低代码可以碰出什么火花?

技术快速迭代&#xff0c;Web前端开发已经逐渐成为构建现代应用程序的关键组成部分。它不仅涉及到美观的界面设计&#xff0c;还包括后端功能的实现&#xff0c;以及跨平台兼容性的考虑。然而&#xff0c;传统的Web前端开发过程往往需要进行长时间的编码和调试&#xff0c;这使…

LTC6820和isoSPI使用

1、MSTR主控/受控 MSTR (引脚 11/ 引脚 12)&#xff1a;串行接口主 / 从选择器输入。MSTR接VCC&#xff0c;则LTC6820为从机&#xff1b;MSTR接GND&#xff0c;则LTC6820为主机 2、SLOW慢速/快速 SLOW (引脚 12/ 引脚 13)&#xff1a;慢速接口选择输入。当时钟频率≤ 200kHz …

C++和Python最常用的库框架一览

一、C常用库 1. 标准模板库(STL) STL包含丰富的数据结构与算法。比如vector动态数组;list双向链表;map基于红黑树实现,支持快速查找键值对。常用算法有sort排序、find搜索等。这些容器算法类和函数模板,是C程序员必不可少的基础。 2. Boost Boost是近年兴起的高质量C库集合…

网络安全:守护数字世界的盾牌

在当今数字化的时代&#xff0c;网络已经渗透到我们生活的方方面面。从社交媒体到在线银行&#xff0c;从在线购物到工作文件传输&#xff0c;网络几乎无处不在。然而&#xff0c;随着网络的普及&#xff0c;网络安全问题也日益凸显。那么&#xff0c;如何确保我们的数字资产安…

递归、搜索与回溯算法(专题一:递归)

往期文章&#xff08;希望小伙伴们在看这篇文章之前&#xff0c;看一下往期文章&#xff09; &#xff08;1&#xff09;递归、搜索与回溯算法&#xff08;专题零&#xff1a;解释回溯算法中涉及到的名词&#xff09;【回溯算法入门必看】-CSDN博客 接下来我会用几道题&#…

gdb命令总结

1、启动调试 前置条件&#xff1a;编译生成执行码时带上 -g&#xff0c;如果使用Makefile&#xff0c;通过给CFLAGS指定-g选项&#xff0c;否则调试时没有符号信息。 gdb program //最常用的用gdb启动程序&#xff0c;开始调试的方式 gdb --args program args //带参数启动或…

Docker-安装实践(mysql,redis集群,tomcat)

docker实践(提供几个安装案例&#xff09; 安装Tomcat # 拉取镜像,可以指定标签不指定默认为最新 docker pull tomcat docker run -itd -p 8080:8080 --name tomcat tomcat:latest #这样内部默认80端口&#xff0c;主机的映射端口会随机分配一个 docker run -itd -P tomcat…

基于web的亚热带常见自然林病虫害识别系统——开篇

文章目录 前言概要论文组织结构相关理论技术简介TensorflowDjango web 开发框架图像的分类的发展感受 绪论研究背景与意义国内外研究现状 前言 随着年底的到来&#xff0c;我相信越来越多的小伙伴也要开始着手自己的毕业设计&#xff0c;这里打算分享我自己的毕业设计&#xf…

python通过元类为客户类自动添加方法

1 python通过元类为客户类自动添加方法 python为不同的类添加相同的方法&#xff0c;有多种方式。 若已知需添加的方法&#xff0c;可以通过继承添加方法&#xff0c;或对象嵌入的组合进行添加。 若需添加的方法为动态不可知&#xff0c;可以通过辅助函数或元类进行添加。 …

Python-基础篇-数据结构-列表、元组、字典、集合

文章目录 思维导图❓ 大抵是何物数据结构切片 &#x1f4ac;具体是何物列表&#x1f4bb; list&#x1f4bb; [ ]自我介绍精神面貌使用说明生理体征增删查改 方法汇总 元组&#x1f4bb; tuple&#x1f4bb; ( )自我介绍使用说明精神面貌生理体征增删查改 字典&#x1f4bb; di…

网络爬虫基本原理介绍

网络爬虫是一种自动化程序&#xff0c;用于从互联网上获取信息并进行数据抓取。它通过发送HTTP请求获取网页内容&#xff0c;并解析网页内容提取所需信息。 一、网络爬虫的基本原理 什么是网络爬虫&#xff1f; 网络爬虫是一种自动化程序&#xff0c;模拟人类在网页上的行为&a…

【C++】vector容器接口要点的补充

接口缩容 在VS编译器的模式下&#xff0c;类似于erase和insert接口的函数通常会进行缩容&#xff0c;因此&#xff0c;insert和erase行参中的迭代器可能会失效。下图中以erase为例&#xff1a; 代码如下&#xff1a; #include <iostream> #include <vector> #inclu…

Python——条形图正负不同色加表格

条形图&#xff0c;当差值大于0时设置一个颜色&#xff0c;反之另一种颜色&#xff0c;并添加表格 import pandas as pd import numpy as np import matplotlib.pyplot as plt import matplotlib.ticker as mtick import matplotlib.ticker as ticker#设置输出结果对齐方式 pd…

Qt 5.15.2 (MSVC 2019)编译 QWT 6.2.0 : 编译MingW或MSVC遇到的坑

MingW下编译QWt 6.2.0 下载qwt最新版本&#xff0c;用git工具 git clone下载源码 git clone https://git.code.sf.net/p/qwt/git qwt-git 或者使用我下载的 qwt 2.6.0 链接&#xff1a;https://pan.baidu.com/s/1KZI-L10N90TJobeqqPYBqw?pwdpq1o 提取码&#xff1a;pq1o 下载…