大家好!我是职场程序猿,感谢您阅读本文,欢迎一键三连哦。
💞当前专栏:Java毕业设计
精彩专栏推荐👇🏻👇🏻👇🏻
开发环境
开发语言:Java
框架:ssm
JDK版本:JDK1.8
服务器:tomcat7
数据库:mysql 5.7
数据库工具:Navicat12
开发软件:eclipse/myeclipse/idea
Maven包:Maven3.3.9
浏览器:谷歌浏览器
源码下载地址:
https://download.csdn.net/download/m0_46388260/89082758
论文目录
【如需全文请按文末获取联系】
目录
一、项目简介
在线医疗服务系统是在MySQL中建立数据表保存信息,运用SSM框架和Java语言编写。并按照软件设计开发流程进行设计实现。系统具备友好性且功能完善。管理员管理医生,药品,预约挂号,购买订单以及用户病例等信息。医生管理坐诊信息,审核预约挂号,管理用户病例。用户查看医生坐诊,对医生预约挂号,在线购买药品。
二、系统设计
2.1软件功能模块设计
设计的管理员的详细功能见下图,管理员登录进入本人后台之后,管理医生,药品,预约挂号,购买订单以及用户病例等信息。
设计的医生的详细功能见下图,医生管理坐诊信息,审核预约挂号,管理用户病例。
设计的用户的详细功能见下图,用户查看医生坐诊,对医生预约挂号,在线购买药品,通过购物车提交药品购买订单。
2.2数据库设计
(1)设计的用户病例实体,其具备的属性见下图。
(3)设计的医生实体,其具备的属性见下图。
(4)设计的药品实体,其具备的属性见下图。
(5)设计的各实体间关系见下图。
三、系统项目部分截图
3.1管理员功能实现
药品管理
管理员权限中的药品管理,其运行效果见下图。管理员详细描述药品信息,可以帮助用户快速了解药品并购买。
已支付订单
管理员权限中的已支付订单,其运行效果见下图。管理员对已支付状态的订单进行发货。
医生管理
管理员权限中的医生管理,其运行效果见下图。管理员查看医生的科室,职称,联系方式等资料,可以修改删除医生。
3.2医生功能实现
医生坐诊管理
医生权限中的医生坐诊管理,其运行效果见下图。医生登记坐诊信息,包括坐诊时间,挂号价格等资料,修改删除坐诊信息。
预约挂号管理
医生权限中的预约挂号管理,其运行效果见下图。医生审核预约挂号信息,为前来就诊的用户添加病例。
用户病例管理
医生权限中的用户病例管理,其运行效果见下图。医生添加的用户病例,可以在本模块进行管理,包括病例下载,病例修改。
3.3用户功能实现
药品信息
用户权限中的药品信息,其运行效果见下图。用户收藏药品,可以通过购物车购买药品,也能直接在本页面立即购买。
医生坐诊
用户权限中的医生坐诊,其运行效果见下图。用户查看医生介绍,通过预约挂号按钮对本页面显示的医生进行挂号。
购物车
用户权限中的购物车,其运行效果见下图。用户通过购物车可以修改购买信息,然后提交订单。
四、部分核心代码
4.1 用户部分
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.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.YaopinEntity;
import com.entity.view.YaopinView;
import com.service.YaopinService;
import com.service.TokenService;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.MPUtil;
import com.utils.CommonUtil;
/**
* 药品
* 后端接口
* @author
* @email
* @date 2020-12-24 11:35:16
*/
@RestController
@RequestMapping("/yaopin")
public class YaopinController {
@Autowired
private YaopinService yaopinService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,YaopinEntity yaopin, HttpServletRequest request){
EntityWrapper<YaopinEntity> ew = new EntityWrapper<YaopinEntity>();
PageUtils page = yaopinService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, yaopin), params), params));
request.setAttribute("data", page);
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@IgnoreAuth
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,YaopinEntity yaopin, HttpServletRequest request){
EntityWrapper<YaopinEntity> ew = new EntityWrapper<YaopinEntity>();
PageUtils page = yaopinService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, yaopin), params), params));
request.setAttribute("data", page);
return R.ok().put("data", page);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( YaopinEntity yaopin){
EntityWrapper<YaopinEntity> ew = new EntityWrapper<YaopinEntity>();
ew.allEq(MPUtil.allEQMapPre( yaopin, "yaopin"));
return R.ok().put("data", yaopinService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(YaopinEntity yaopin){
EntityWrapper< YaopinEntity> ew = new EntityWrapper< YaopinEntity>();
ew.allEq(MPUtil.allEQMapPre( yaopin, "yaopin"));
YaopinView yaopinView = yaopinService.selectView(ew);
return R.ok("查询药品成功").put("data", yaopinView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") String id){
YaopinEntity yaopin = yaopinService.selectById(id);
yaopin.setClicknum(yaopin.getClicknum()+1);
yaopin.setClicktime(new Date());
yaopinService.updateById(yaopin);
return R.ok().put("data", yaopin);
}
/**
* 前端详情
*/
@IgnoreAuth
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") String id){
YaopinEntity yaopin = yaopinService.selectById(id);
yaopin.setClicknum(yaopin.getClicknum()+1);
yaopin.setClicktime(new Date());
yaopinService.updateById(yaopin);
return R.ok().put("data", yaopin);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody YaopinEntity yaopin, HttpServletRequest request){
yaopin.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(yaopin);
yaopinService.insert(yaopin);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody YaopinEntity yaopin, HttpServletRequest request){
yaopin.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(yaopin);
yaopinService.insert(yaopin);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
public R update(@RequestBody YaopinEntity yaopin, HttpServletRequest request){
//ValidatorUtils.validateEntity(yaopin);
yaopinService.updateById(yaopin);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
yaopinService.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<String, Object> 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<YaopinEntity> wrapper = new EntityWrapper<YaopinEntity>();
if(map.get("remindstart")!=null) {
wrapper.ge(columnName, map.get("remindstart"));
}
if(map.get("remindend")!=null) {
wrapper.le(columnName, map.get("remindend"));
}
int count = yaopinService.selectCount(wrapper);
return R.ok().put("count", count);
}
/**
* 前端智能排序
*/
@IgnoreAuth
@RequestMapping("/autoSort")
public R autoSort(@RequestParam Map<String, Object> params,YaopinEntity yaopin, HttpServletRequest request,String pre){
EntityWrapper<YaopinEntity> ew = new EntityWrapper<YaopinEntity>();
Map<String, Object> newMap = new HashMap<String, Object>();
Map<String, Object> param = new HashMap<String, Object>();
Iterator<Map.Entry<String, Object>> it = param.entrySet().iterator();
while (it.hasNext()) {
Map.Entry<String, Object> entry = it.next();
String key = entry.getKey();
String newKey = entry.getKey();
if (pre.endsWith(".")) {
newMap.put(pre + newKey, entry.getValue());
} else if (StringUtils.isEmpty(pre)) {
newMap.put(newKey, entry.getValue());
} else {
newMap.put(pre + "." + newKey, entry.getValue());
}
}
params.put("sort", "clicknum");
params.put("order", "desc");
PageUtils page = yaopinService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, yaopin), params), params));
return R.ok().put("data", page);
}
}
获取源码或论文
如需对应的论文或源码,以及其他定制需求,也可以下方微信联系我。