ssm+vue医院医患管理系统源码和论文

ssm+vue医院医患管理系统源码和论文077

 开发工具:idea 
 数据库mysql5.7+
 数据库链接工具:navcat,小海豚等
  技术:ssm vue.js

摘  要

21世纪的今天,随着社会的不断发展与进步,人们对于信息科学化的认识,已由低层次向高层次发展,由原来的感性认识向理性认识提高,管理工作的重要性已逐渐被人们所认识,科学化的管理,使信息存储达到准确、快速、完善,并能提高工作管理效率,促进其发展。

论文主要是对医院医患管理系统进行了介绍,包括研究的现状,还有涉及的开发背景,然后还对系统的设计目标进行了论述,还有系统的需求,以及整个的设计方案,对系统的设计以及实现,也都论述的比较细致,最后对医院医患管理系统进行了一些具体测试。

本文以Java为开发技术,实现了一个医院医患管理系统医院医患管理系统的主要实现功能包括:管理员:首页、个人中心、用户管理、病史内容管理检查及结果管理评估诊断管理建议和注意事项管理、挂号收费管理、财务管理、药房管理、管理员管理、留言板管理、系统管理,用户;首页、个人中心、用户管理、病史内容管理检查及结果管理评估诊断管理建议和注意事项管理、挂号收费管理,前台首页;首页、建议和注意事项、轮播图管理、网站资讯、留言板管理、留言反馈、个人中心、后台管理功能,基本上实现了整个医院医患管理系统的过程。

具体在系统设计上,采用了B/S的结构,同时,也使用Java技术在动态页面上进行了设计,后台上采用Mysql数据库,是一个非常优秀的医院医患管理系统

关键词 :医院医患管理系统;Java技术;Mysql数据库;B/S结构 SSM框架

ssm+vue医院医患管理系统源码和论文_第1张图片ssm+vue医院医患管理系统源码和论文_第2张图片ssm+vue医院医患管理系统源码和论文_第3张图片ssm+vue医院医患管理系统源码和论文_第4张图片ssm+vue医院医患管理系统源码和论文_第5张图片ssm+vue医院医患管理系统源码和论文_第6张图片ssm+vue医院医患管理系统源码和论文_第7张图片ssm+vue医院医患管理系统源码和论文_第8张图片ssm+vue医院医患管理系统源码和论文_第9张图片ssm+vue医院医患管理系统源码和论文_第10张图片ssm+vue医院医患管理系统源码和论文_第11张图片ssm+vue医院医患管理系统源码和论文_第12张图片ssm+vue医院医患管理系统源码和论文_第13张图片ssm+vue医院医患管理系统源码和论文_第14张图片ssm+vue医院医患管理系统源码和论文_第15张图片ssm+vue医院医患管理系统源码和论文_第16张图片ssm+vue医院医患管理系统源码和论文_第17张图片ssm+vue医院医患管理系统源码和论文_第18张图片ssm+vue医院医患管理系统源码和论文_第19张图片ssm+vue医院医患管理系统源码和论文_第20张图片ssm+vue医院医患管理系统源码和论文_第21张图片ssm+vue医院医患管理系统源码和论文_第22张图片ssm+vue医院医患管理系统源码和论文_第23张图片ssm+vue医院医患管理系统源码和论文_第24张图片ssm+vue医院医患管理系统源码和论文_第25张图片ssm+vue医院医患管理系统源码和论文_第26张图片ssm+vue医院医患管理系统源码和论文_第27张图片ssm+vue医院医患管理系统源码和论文_第28张图片ssm+vue医院医患管理系统源码和论文_第29张图片ssm+vue医院医患管理系统源码和论文_第30张图片ssm+vue医院医患管理系统源码和论文_第31张图片ssm+vue医院医患管理系统源码和论文_第32张图片

package com.controller;

import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Map;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Date;
import java.util.List;
import javax.servlet.http.HttpServletRequest;

import com.utils.ValidatorUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.format.annotation.DateTimeFormat;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.annotation.IgnoreAuth;

import com.entity.JianyihezhuyishixiangEntity;
import com.entity.view.JianyihezhuyishixiangView;

import com.service.JianyihezhuyishixiangService;
import com.service.TokenService;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.MD5Util;
import com.utils.MPUtil;
import com.utils.CommonUtil;


/**
 * 建议和注意事项
 * 后端接口
 * @author 
 * @email 
 * @date 2021-03-12 21:26:48
 */
@RestController
@RequestMapping("/jianyihezhuyishixiang")
public class JianyihezhuyishixiangController {
    @Autowired
    private JianyihezhuyishixiangService jianyihezhuyishixiangService;
    


    /**
     * 后端列表
     */
    @RequestMapping("/page")
    public R page(@RequestParam Map params,JianyihezhuyishixiangEntity jianyihezhuyishixiang, 
		HttpServletRequest request){

        EntityWrapper ew = new EntityWrapper();
		PageUtils page = jianyihezhuyishixiangService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, jianyihezhuyishixiang), params), params));
        return R.ok().put("data", page);
    }
    
    /**
     * 前端列表
     */
    @RequestMapping("/list")
    public R list(@RequestParam Map params,JianyihezhuyishixiangEntity jianyihezhuyishixiang, HttpServletRequest request){
        EntityWrapper ew = new EntityWrapper();
		PageUtils page = jianyihezhuyishixiangService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, jianyihezhuyishixiang), params), params));
        return R.ok().put("data", page);
    }

	/**
     * 列表
     */
    @RequestMapping("/lists")
    public R list( JianyihezhuyishixiangEntity jianyihezhuyishixiang){
       	EntityWrapper ew = new EntityWrapper();
      	ew.allEq(MPUtil.allEQMapPre( jianyihezhuyishixiang, "jianyihezhuyishixiang")); 
        return R.ok().put("data", jianyihezhuyishixiangService.selectListView(ew));
    }

	 /**
     * 查询
     */
    @RequestMapping("/query")
    public R query(JianyihezhuyishixiangEntity jianyihezhuyishixiang){
        EntityWrapper< JianyihezhuyishixiangEntity> ew = new EntityWrapper< JianyihezhuyishixiangEntity>();
 		ew.allEq(MPUtil.allEQMapPre( jianyihezhuyishixiang, "jianyihezhuyishixiang")); 
		JianyihezhuyishixiangView jianyihezhuyishixiangView =  jianyihezhuyishixiangService.selectView(ew);
		return R.ok("查询建议和注意事项成功").put("data", jianyihezhuyishixiangView);
    }
	
    /**
     * 后端详情
     */
    @RequestMapping("/info/{id}")
    public R info(@PathVariable("id") Long id){
        JianyihezhuyishixiangEntity jianyihezhuyishixiang = jianyihezhuyishixiangService.selectById(id);
        return R.ok().put("data", jianyihezhuyishixiang);
    }

    /**
     * 前端详情
     */
    @RequestMapping("/detail/{id}")
    public R detail(@PathVariable("id") Long id){
        JianyihezhuyishixiangEntity jianyihezhuyishixiang = jianyihezhuyishixiangService.selectById(id);
        return R.ok().put("data", jianyihezhuyishixiang);
    }
    



    /**
     * 后端保存
     */
    @RequestMapping("/save")
    public R save(@RequestBody JianyihezhuyishixiangEntity jianyihezhuyishixiang, HttpServletRequest request){
    	jianyihezhuyishixiang.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    	//ValidatorUtils.validateEntity(jianyihezhuyishixiang);

        jianyihezhuyishixiangService.insert(jianyihezhuyishixiang);
        return R.ok();
    }
    
    /**
     * 前端保存
     */
    @RequestMapping("/add")
    public R add(@RequestBody JianyihezhuyishixiangEntity jianyihezhuyishixiang, HttpServletRequest request){
    	jianyihezhuyishixiang.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    	//ValidatorUtils.validateEntity(jianyihezhuyishixiang);

        jianyihezhuyishixiangService.insert(jianyihezhuyishixiang);
        return R.ok();
    }

    /**
     * 修改
     */
    @RequestMapping("/update")
    public R update(@RequestBody JianyihezhuyishixiangEntity jianyihezhuyishixiang, HttpServletRequest request){
        //ValidatorUtils.validateEntity(jianyihezhuyishixiang);
        jianyihezhuyishixiangService.updateById(jianyihezhuyishixiang);//全部更新
        return R.ok();
    }
    

    /**
     * 删除
     */
    @RequestMapping("/delete")
    public R delete(@RequestBody Long[] ids){
        jianyihezhuyishixiangService.deleteBatchIds(Arrays.asList(ids));
        return R.ok();
    }
    
    /**
     * 提醒接口
     */
	@RequestMapping("/remind/{columnName}/{type}")
	public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request, 
						 @PathVariable("type") String type,@RequestParam Map map) {
		map.put("column", columnName);
		map.put("type", type);
		
		if(type.equals("2")) {
			SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
			Calendar c = Calendar.getInstance();
			Date remindStartDate = null;
			Date remindEndDate = null;
			if(map.get("remindstart")!=null) {
				Integer remindStart = Integer.parseInt(map.get("remindstart").toString());
				c.setTime(new Date()); 
				c.add(Calendar.DAY_OF_MONTH,remindStart);
				remindStartDate = c.getTime();
				map.put("remindstart", sdf.format(remindStartDate));
			}
			if(map.get("remindend")!=null) {
				Integer remindEnd = Integer.parseInt(map.get("remindend").toString());
				c.setTime(new Date());
				c.add(Calendar.DAY_OF_MONTH,remindEnd);
				remindEndDate = c.getTime();
				map.put("remindend", sdf.format(remindEndDate));
			}
		}
		
		Wrapper wrapper = new EntityWrapper();
		if(map.get("remindstart")!=null) {
			wrapper.ge(columnName, map.get("remindstart"));
		}
		if(map.get("remindend")!=null) {
			wrapper.le(columnName, map.get("remindend"));
		}


		int count = jianyihezhuyishixiangService.selectCount(wrapper);
		return R.ok().put("count", count);
	}
	


}

你可能感兴趣的:(vue.js,前端,javascript,ssm)