💕💕作者:计算机源码社
💕💕个人简介:本人七年开发经验,擅长Java、微信小程序、Python、Android等,大家有这一块的问题可以一起交流!
💕💕学习资料、程序开发、技术解答、代码讲解、文档报告
1、绪论
1.1 项目背景
为了提高国民的身体素质,国家在90年代开始,就给与人们优惠政策,开展免疫计划。自从该免疫方案开始实施以来,越来越多的疫苗接种方案已列入全国免费注射中,例如小孩刚出生需要注射的天花疫苗、乙肝疫苗,还有HPV疫苗等。其主要目标是提高人们的身体素质和预防感染的免疫力,这种方案发挥了非常重要的作用,能够防止人们减少感染很多疾病。然而,开发疫苗需要许多环境,这从疫苗的研发到疫苗的临床试验就一直在实验中。其中最重要的是疫苗的临床试验,要让疫苗能正式实施并且在全国的范围内进行推广,还必须建立在临床试验成功的基础上。然而,根据调查发现之前很多派能源地区的医院以及疫苗接种的单位仍然使用线下预约接种疫苗的方法,没有利用互联网带来的便利,存在着查询和统计困难、人力、财力和物力要求高。因此,迫切需要建立在线疫苗接种预约管理系统,以便用户在线就能预约疫苗,节省了时间上的浪费。
1.2 项目意义
基于springboot+vue在线疫苗接种预约管理系统是基于B/S(浏览器/服务器)模式的分层思想进行设计。服务端整个项目架构使用Spring、Spring MVC、Mybatis搭建;项目管理使用Maven框架管理;存储数据库使用MySQL数据库;连接数据库使用JDBC连接;为了提高获取连接速度使用JDBC数据库连接池。采用了HTML技术编写页面,使得页面简洁美观、代码可阅性增强,实现前后端分离易于维护管理。本系统所采用的数有技术均为现今主流框架技术,有详细的开发使用文档以及前人开发经验分享,在开发过程中可参考别人经验及开发文档避开缺陷,更好实现系统。因此,在系统所采用的技术是在可控范围内,开发一款致力于操作简洁、业务详细、提高工作效率的疫苗接种管理系统是可行的。更是让疫苗接种工作变得顺利,减轻基层工作人员的工作压力,提高接种疫苗的工作效率。
2、核心功能模块
基于SpringBoot+Vue的在线疫苗接种预约管理系统采用B/S的结构,Java语言进行设计,后台上采用Mysql数据库。
在线疫苗接种预约管理系统的主要使用者分为管理员和用户,实现功能包括:
①管理员功能:登录、用户管理、疫苗信息管理、疫苗种类管理、疫苗种类图表统计、预约接种管理、异常提醒管理、健康科普管理、接种记录管理、疫苗新闻资讯管理、系统管理。
<font size=4px> ②用户功能:注册、登录、查看疫苗信息、查看健康科普、观看宣传视频、查看疫苗相关新闻资讯、在线咨询、在线评论、预约疫苗接种、查看接种记录、查看提醒信息、修改密码、修改个人资料等操作。
3、项目页面展示
4、 核心代码
/**
* 疫苗信息
* 后端接口
*/
@RestController
@RequestMapping("/yimiaoxinxi")
public class YimiaoxinxiController {
@Autowired
private YimiaoxinxiService yimiaoxinxiService;
/**
* 后端疫苗信息列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,YimiaoxinxiEntity yimiaoxinxi,
HttpServletRequest request){
EntityWrapper<YimiaoxinxiEntity> ew = new EntityWrapper<YimiaoxinxiEntity>();
PageUtils page = yimiaoxinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, yimiaoxinxi), params), params));
return R.ok().put("data", page);
}
/**
* 前端疫苗信息列表
*/
@IgnoreAuth
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,YimiaoxinxiEntity yimiaoxinxi,
HttpServletRequest request){
EntityWrapper<YimiaoxinxiEntity> ew = new EntityWrapper<YimiaoxinxiEntity>();
PageUtils page = yimiaoxinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, yimiaoxinxi), params), params));
return R.ok().put("data", page);
}
/**
* 疫苗信息列表
*/
@RequestMapping("/lists")
public R list( YimiaoxinxiEntity yimiaoxinxi){
EntityWrapper<YimiaoxinxiEntity> ew = new EntityWrapper<YimiaoxinxiEntity>();
ew.allEq(MPUtil.allEQMapPre( yimiaoxinxi, "yimiaoxinxi"));
return R.ok().put("data", yimiaoxinxiService.selectListView(ew));
}
/**
* 查询疫苗信息
*/
@RequestMapping("/query")
public R query(YimiaoxinxiEntity yimiaoxinxi){
EntityWrapper< YimiaoxinxiEntity> ew = new EntityWrapper< YimiaoxinxiEntity>();
ew.allEq(MPUtil.allEQMapPre( yimiaoxinxi, "yimiaoxinxi"));
YimiaoxinxiView yimiaoxinxiView = yimiaoxinxiService.selectView(ew);
return R.ok("查询疫苗信息成功").put("data", yimiaoxinxiView);
}
/**
* 后端疫苗信息详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id){
YimiaoxinxiEntity yimiaoxinxi = yimiaoxinxiService.selectById(id);
return R.ok().put("data", yimiaoxinxi);
}
/**
* 前端疫苗信息详情
*/
@IgnoreAuth
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Long id){
YimiaoxinxiEntity yimiaoxinxi = yimiaoxinxiService.selectById(id);
return R.ok().put("data", yimiaoxinxi);
}
/**
* 后端保存疫苗信息
*/
@RequestMapping("/save")
public R save(@RequestBody YimiaoxinxiEntity yimiaoxinxi, HttpServletRequest request){
yimiaoxinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(yimiaoxinxi);
yimiaoxinxiService.insert(yimiaoxinxi);
return R.ok();
}
/**
* 前端保存疫苗信息
*/
@RequestMapping("/add")
public R add(@RequestBody YimiaoxinxiEntity yimiaoxinxi, HttpServletRequest request){
yimiaoxinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(yimiaoxinxi);
yimiaoxinxiService.insert(yimiaoxinxi);
return R.ok();
}
/**
* 修改疫苗信息
*/
@RequestMapping("/update")
public R update(@RequestBody YimiaoxinxiEntity yimiaoxinxi, HttpServletRequest request){
//ValidatorUtils.validateEntity(yimiaoxinxi);
yimiaoxinxiService.updateById(yimiaoxinxi);//全部更新
return R.ok();
}
/**
* 删除疫苗信息
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
yimiaoxinxiService.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<YimiaoxinxiEntity> wrapper = new EntityWrapper<YimiaoxinxiEntity>();
if(map.get("remindstart")!=null) {
wrapper.ge(columnName, map.get("remindstart"));
}
if(map.get("remindend")!=null) {
wrapper.le(columnName, map.get("remindend"));
}
int count = yimiaoxinxiService.selectCount(wrapper);
return R.ok().put("count", count);
}