Java项目:ssm医院管理系统

作者主页:夜未央5788

 简介:Java领域优质创作者、Java项目、学习资料、技术互助

文末获取源码

功能介绍

基于ssm+layui框架的小型医院后台管理系统。简单实现了病人管理、病床管理、员工管理、部门管理、药品管理、仪器管理等基础功能。
整个项目通过maven方式搭建用到的jar包通过maven导入,前端使用搭建好的Layui框架,拿来即用。后端使用SSM+MySQL,后台逻辑实现了分页、级联、多表查询。目前项目基本完成,可重构与扩展

技术栈

- SSM框架
- Layui框架
- MySQL 5.7 数据库
- Maven搭建
- MD5加密

实现功能

- 管理员的登录、退出与切换
- 管理员、仪器、药品、部门、员工、病床、病人各模块增删改查
- 个别模块关联查询
- 各个模块数据导出Excel

运行截图

相关代码 

AppartusController

package com.xie.controller;

import com.xie.pojo.Appartus;
import com.xie.pojo.PageInfo;
import com.xie.pojo.Tms;
import com.xie.service.AppartusService;
import com.xie.util.MD5Util;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

import javax.servlet.http.HttpSession;
import java.util.List;

@Controller
public class AppartusController {
    @Autowired
    private AppartusService appartusService;

    /**
     * 分页查询
     */
    @RequestMapping("/findAppartus")
    public String findAppartus(String appartusNo, String appartusName,Integer pageIndex
            , Integer pageSize, Model model,HttpSession session){
        PageInfo<Appartus> ap = appartusService.findPageInfo(appartusNo,appartusName, pageIndex,pageSize);
        model.addAttribute("ap",ap);
        session.setAttribute("u",appartusNo);
        session.setAttribute("t",appartusName);
        return "appartus_list";
    }

    /**
     * 添加管理员信息
     */
    @RequestMapping(value = "/addAppartus" ,method = RequestMethod.POST)
    @ResponseBody
    public String addAppartus(@RequestBody Appartus appartus) {
        int a = appartusService.addAppartus(appartus);
        return "admin_list";
    }


    /**
     * 删除仪器信息
     */
    @RequestMapping( "/deleteAppartus")
    @ResponseBody
    public String deleteAdmin(Integer appartusId) {
        int a = appartusService.deleteAppartus(appartusId);
        return "appartus_list";
    }

    /**
     * 修改仪器信息
     */
    @RequestMapping( value = "/updateAppartus", method = RequestMethod.POST)
    public String updateAdmin(Appartus appartus) {
        int a = appartusService.updateAppartus(appartus);
        return "redirect:/findAppartus";
    }


    /**
     * 根据管理员Id搜索;将请求数据a_id写入参数a_id
     */
    @RequestMapping("/findAppartusById")
    public String findAppartusById(Integer appartusId, HttpSession session) {
        Appartus ap2= appartusService.findAppartusById(appartusId);
        session.setAttribute("ap2",ap2);
        return "appartus_edit";
    }


    /**
     * 导出Excel
     */
    @RequestMapping(value = "/exportAppartuslist" , method = RequestMethod.POST)
    @ResponseBody
    public List<Appartus> exportAdmin(){
        List<Appartus> appartus = appartusService.getAll();
        return appartus;
    }
}

BedController

package com.xie.controller;

import com.xie.pojo.Bed;
import com.xie.pojo.PageInfo;
import com.xie.pojo.Room;
import com.xie.service.BedService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

import javax.servlet.http.HttpSession;
import java.util.List;

@Controller
public class BedController {
    @Autowired
    private BedService bedService;

    /**
     * 分页查询
     */
    @RequestMapping("/findBed")
    public String findBed(String bedNo, String bedRoomId,Integer pageIndex
            , Integer pageSize, Model model,HttpSession session){
        PageInfo<Bed> be = bedService.findPageInfo(bedNo,bedRoomId, pageIndex,pageSize);
        model.addAttribute("be",be);
        session.setAttribute("u",bedNo);
        session.setAttribute("t",bedRoomId);
        return "bed_list";
    }

    /**
     * 添加病床信息
     */
    @RequestMapping(value = "/addBed" ,method = RequestMethod.POST)
    @ResponseBody
    public String addBed(@RequestBody Bed bed) {
        int a = bedService.addBed(bed);
        return "bed_list";
    }


    /**
     * 修改信息
     */
    @RequestMapping( value = "/updateBed", method = RequestMethod.POST)
    public String updateBed(Bed bed) {
        int a = bedService.updateBed(bed);
        return "redirect:/findBed";
    }

    /**
     * 根据Id搜索;
     */
    @RequestMapping("/findBedById")
    public String findBedById(Integer bedId, HttpSession session) {
        Bed be2= bedService.findBedById(bedId);
        session.setAttribute("be2",be2);
        return "bed_edit";
    }



    /**
     * 导出Excel
     */
    @RequestMapping(value = "/exportBedlist" , method = RequestMethod.POST)
    @ResponseBody
    public List<Bed> exportBedlist(){
        List<Bed> beds = bedService.getAll();
        return beds;
    }


    /**
     * 部门人员信息查询
     */
    @RequestMapping(value = "/findRoomT")
    public String findRoomT(Room room, Model model) {
        List<Bed> beds = bedService.findRoomT(room);
        model.addAttribute("beds",beds);
        return "roomT_list";
    }
}

DeptController

package com.xie.controller;

import com.xie.pojo.Dept;
import com.xie.pojo.PageInfo;
import com.xie.pojo.Salary;
import com.xie.service.DeptService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

import javax.servlet.http.HttpSession;
import java.util.List;

@Controller
public class DeptController {
    @Autowired
    private DeptService deptService;

    /**
     * 分页查询
     */
    @RequestMapping("/findDept")
    public String findDept(String deptNo, String deptName,Integer pageIndex
            , Integer pageSize, Model model,HttpSession session){
        PageInfo<Dept> de = deptService.findPageInfo(deptNo,deptName, pageIndex,pageSize);
        model.addAttribute("de",de);
        session.setAttribute("u",deptNo);
        session.setAttribute("t",deptName);
        return "Dept_list";
    }

    /**
     * 添加管理员信息
     */
    @RequestMapping(value = "/addDept" ,method = RequestMethod.POST)
    @ResponseBody
    public String addDept(@RequestBody Dept dept) {
        int a = deptService.addDept(dept);
        return "Dept_list";
    }


    /**
     * 修改信息
     */
    @RequestMapping( value = "/updateDept", method = RequestMethod.POST)
    public String updateDept(Dept dept) {
        int a = deptService.updateDept(dept);
        return "redirect:/findDept";
    }

    /**
     * 根据Id搜索;
     */
    @RequestMapping("/findDeptById")
    public String findDeptById(Integer deptId, HttpSession session) {
        Dept de2= deptService.findDeptById(deptId);
        session.setAttribute("de2",de2);
        return "Dept_edit";
    }



    /**
     * 导出Excel
     */
    @RequestMapping(value = "/exportDeptlist" , method = RequestMethod.POST)
    @ResponseBody
    public List<Dept> exportDept(){
        List<Dept> depts = deptService.getAll();
        return depts;
    }


    /**
     * 部门人员信息查询
     */
    @RequestMapping(value = "/findDeptPersonnel")
    public String findClassStudent(Dept dept,Model model, HttpSession session) {
        List<Dept> dep = deptService.findDeptPersonnel(dept);
        model.addAttribute("dep",dep);
        return "dept_Personnellist";
    }

}

PaitientController

package com.xie.controller;

import com.xie.pojo.*;
import com.xie.service.PaitientService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

import javax.servlet.http.HttpSession;
import java.util.List;

@Controller
public class PaitientController {
    @Autowired
    private PaitientService paitientService;

    /**
     * 分页查询
     */
    @RequestMapping("/findPaitient")
    public String findPaitient(String paitientId, String paitientName,String paitientGender,Integer pageIndex
            , Integer pageSize, Model model,HttpSession session){
        PageInfo<Paitient> pa = paitientService.findPageInfo(paitientId,paitientName,paitientGender, pageIndex,pageSize);
        model.addAttribute("pa",pa);
        session.setAttribute("u",paitientId);
        session.setAttribute("t",paitientName);
        session.setAttribute("g",paitientGender);
        return "paitient_list";
    }

    /**
     * 添加管理员信息
     */
    @RequestMapping(value = "/addPaitient" ,method = RequestMethod.POST)
    @ResponseBody
    public String addPaitient(@RequestBody Paitient paitient) {
        int a = paitientService.addPaitient(paitient);
        return "paitient_list";
    }

    /**
     * 删除仪器信息
     */
    @RequestMapping( "/deletePaitient")
    @ResponseBody
    public String deletePaitient(Integer paitientId) {
        int a = paitientService.deletePaitient(paitientId);
        return "paitient_list";
    }


    /**
     * 修改仪器信息
     */
    @RequestMapping( value = "/updatePaitient", method = RequestMethod.POST)
    public String updatePaitient(Paitient paitient) {
        int a = paitientService.updatePaitient(paitient);
        return "redirect:/findPaitient";
    }

    /**
     * 根据管理员Id搜索;将请求数据a_id写入参数a_id
     */
    @RequestMapping("/findPaitientById")
    public String findPaitientById(Integer paitientId, HttpSession session) {
        Paitient pa2= paitientService.findPaitientById(paitientId);
        session.setAttribute("pa2",pa2);
        return "paitient_edit";
    }

    /**
     * 导出Excel
     */
    @RequestMapping(value = "/exportPaitientlist" , method = RequestMethod.POST)
    @ResponseBody
    public List<Paitient> exportPotion(){
        List<Paitient> paitients = paitientService.getAll();
        return paitients;
    }

    /**
     * 部门人员信息查询
     */
    @RequestMapping(value = "/findPP")
    public String findPP(Personnel personnel, Model model) {
        List<Paitient> paitients = paitientService.findPP(personnel);
        model.addAttribute("pas",paitients);
        return "PP_list";
    }
}

PersonnelController

package com.xie.controller;

import com.xie.pojo.PageInfo;
import com.xie.pojo.Personnel;
import com.xie.pojo.Potion;
import com.xie.service.PersonnelService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

import javax.servlet.http.HttpSession;
import java.util.List;

@Controller
public class PersonnelController {
    @Autowired
    private PersonnelService personnelService;

    /**
     * 分页查询
     */
    @RequestMapping("/findPersonnel")
    public String findPersonnel(String empNo, String empName,Integer pageIndex
            , Integer pageSize, Model model,HttpSession session){
        PageInfo<Personnel> pe = personnelService.findPageInfo(empNo,empName, pageIndex,pageSize);
        model.addAttribute("pe",pe);
        session.setAttribute("u",empNo);
        session.setAttribute("t",empName);
        return "personnel_list";
    }

    /**
     * 添加管理员信息
     */
    @RequestMapping(value = "/addPersonnel" ,method = RequestMethod.POST)
    @ResponseBody
    public String addPersonnel(@RequestBody Personnel personnel) {
        int a = personnelService.addPersonnel(personnel);
        return "personnel_list";
    }

    /**
     * 删除仪器信息
     */
    @RequestMapping( "/deletePersonnel")
    @ResponseBody
    public String deletePersonnel(Integer empId) {
        int a = personnelService.deletePersonnel(empId);
        return "personnel_list";
    }


    /**
     * 修改仪器信息
     */
    @RequestMapping( value = "/updatePersonnel", method = RequestMethod.POST)
    public String updatePersonnel(Personnel personnel) {
        int a = personnelService.updatePersonnel(personnel);
        return "redirect:/findPersonnel";
    }

    /**
     * 根据管理员Id搜索;将请求数据a_id写入参数a_id
     */
    @RequestMapping("/findPersonnelById")
    public String findPersonnelById(Integer empId, HttpSession session) {
        Personnel pe2= personnelService.findPersonnelById(empId);
        session.setAttribute("pe2",pe2);
        return "personnel_edit";
    }



    /**
     * 导出Excel
     */
    @RequestMapping(value = "/exportPersonnel" , method = RequestMethod.POST)
    @ResponseBody
    public List<Personnel> exportPersonnel(){
        List<Personnel> personnel = personnelService.getAll();
        return personnel;
    }
}

如果也想学习本系统,下面领取。关注并回复:036ssm 

这是一个基于SSM(Spring、SpringMVC和MyBatis)框架与Vue.js前端技术的医院门诊管理系统。该系统旨在帮助医院提高管理效率,优化患者就诊流程,并为医务人员提供便捷的信息查询功能。源码:本资源包含完整的医院门诊管理系统源代码,包括后端的Java代码(使用Spring、SpringMVC和MyBatis框架编写)、前端的Vue.js代码以及数据库设计文件。这些代码将帮助您快速搭建一个基本的门诊管理系统。部署说明:为了方便部署,我们提供了详细的部署说明文档,包括如何配置环境、安装依赖、启动项目等步骤。通过阅读部署说明,您可以轻松地在本地或服务器上部署该系统。系统介绍:该门诊管理系统具有以下主要功能:患者信息管理:包括患者的基本信息、病历记录、就诊记录等。医生信息管理:包括医生的基本信息、擅长领域、出诊时间等。挂号管理:患者可以通过在线预约、现场挂号等方式进行挂号。排队叫号:系统会根据患者的就诊顺序自动分配叫号,提高就诊效率。费用管理:支持多种费用结算方式,如现金、刷卡、微信支付等。统计报表:提供各种统计报表,帮助医院了解运营状况,优化管理策略。数据库:本系统使用了MySQL作为数据库存储介质。数据库中包含了患者信息表、医生信息表、挂号表、排队叫号表、费用表等数据表。这些数据表分别用于存储患者的个人信息、医生的执业信息、挂号记录、就诊顺序以及费用信息等。总之,这个基于SSM+Vue的医院门诊管理系统是一个功能齐全且易于部署的项目。通过学习和使用这个系统,您可以更好地了解医院门诊管理系统的设计和实现,为您的工作带来更多便利。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

夜未央5788

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值