大家好!我是程序猿老A,感谢您阅读本文,欢迎一键三连哦。
💞当前专栏:微信小程序毕业设计
精彩专栏推荐👇🏻👇🏻👇🏻
开发运行环境
①前端:微信小程序开发工具
② 后端:Java
- 框架:ssm
- JDK版本:JDK1.8
- 服务器:tomcat7
- 数据库:mysql 5.7
- 数据库工具:Navicat12
- 开发软件:eclipse/myeclipse/idea
- Maven包:Maven3.3.9
- 浏览器:谷歌浏览器
源码下载地址:
https://download.csdn.net/download/2301_76953549/89227730
论文目录
【如需全文请按文末获取联系】
一、项目简介
本系统就是采用在线网站的理念进行开发,用户可以在网站上浏览不同体检套餐,找到符合要求的套餐就可以在线预约,也可以在线咨询;咨询后可以收到管理员的回复。为了更加方便用户使用本系统,本系统中也加入了体检常识的内容。本系统的实现可以帮助用户足不出户预约,非常符合现代人的体检需求。
二、系统设计
2.1软件功能模块设计
根据用户和管理员的功能可以分为微信端和服务端两个界面,在微信端中主要的功能为:
(1)体检套餐功能,根据不同的分类进行体检套餐的展示;
(2)查询功能,用户可以根据不同的字段来进行特定体检套餐的搜索,本功能是一个系统最基本的功能;
(3)预约功能,在体检套餐的详情里可以直接预约;
(4)用户管理功能,包括注册用户和对用户资料的信息;
(5)体检常识信息功能,可以查看管理员发布的体检常识;
(6)体检报告信息功能,可以查询自己的体检结果;
(7)在线咨询功能,可以实现在线解疑。
本系统的微信端功能模块结构图如下图3.1所示:
本系统的管理员服务端功能包括:
(1)体检套餐信息管理功能,对体检套餐进行上传、删除、编辑;
(2)个人中心管理功能,对管理员账号、密码进行管理;
(3)体检常识管理功能,对体检常识进行发布和管理;
(4)体检分类信息管理功能,可以管理分类信息;
(5)体检预约管理功能,包括查询预约和安排体检;
(6)体检报告管理功能,可以管理用户的体检报告信息;
(7)用户管理功能,查询和管理用户的信息。
本系统的服务端功能模块结构图如下图3.2所示:
2.2数据库设计
本系统的实体包括用户、预约、体检套餐、体检分类、体检报告。系统的ER关系图如下图3.3所示:
(1)用户信息包括编号、密码、账号、性别等,用户信息ER图如下图3.4所示:
(3)预约信息包括预约编号、用户编号、用户名和预约时间,预约信息ER图如下图3.6所示:
(4)体检套餐信息包括编号、名称、分类等,体检套餐信息ER图如下图3.7所示:
三、系统项目部分截图
3.1系统首页界面的设计实现
系统的首页可以看到标题、功能导航栏、搜索框、体检套餐信息等,在首页的上方可以看到搜索框、背景图片。系统首页的功能设计效果如下图4.1所示:
用户注册功能的设计实现
为了保证系统的安全性和满足用户的预约要求,用户需要先进行注册才可以进行操作,用户注册时需要注意表单信息的填写,在表单信息填写完成后,系统可以实现对表单信息进行自我检测,当检测为正确时,可以实现注册成功,当有信息检测为错误时会提示重新填写。用户注册成功后系统会把填写的表单保存到数据库中。用户注册的实现界面如下图4.2所示:
体检套餐信息功能的设计实现
体检套餐信息为基本的功能,体检套餐信息可以分为学生体检、入职体检、女性健康、老年体检,对于体检套餐信息的展示以图片展示为主,可以使用户更加的一目了然,体检套餐信息的实现界面如下图4.5所示:
预约功能的设计实现
在看到符合要求的体检套餐后可以在线预约。预约功能的设计界面如下图4.6所示:
我的功能的设计实现
我的包括体检预约管理、体检报告管理和我的收藏管理、体检套餐管理。我的功能的界面实现如下图4.8所示:
3.2管理员功能模块的设计实现
管理员可以管理用户信息、体检套餐信息、体检常识信息和体检预约信息、体检报告信息等。管理员的实现界面如下图4.10所示:
四、部分核心代码
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.TijianbaogaoEntity;
import com.entity.view.TijianbaogaoView;
import com.service.TijianbaogaoService;
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-04-02 18:00:58
*/
@RestController
@RequestMapping("/tijianbaogao")
public class TijianbaogaoController {
@Autowired
private TijianbaogaoService tijianbaogaoService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,TijianbaogaoEntity tijianbaogao,
HttpServletRequest request){
String tableName = request.getSession().getAttribute("tableName").toString();
if(tableName.equals("yonghu")) {
tijianbaogao.setYonghuming((String)request.getSession().getAttribute("username"));
}
EntityWrapper<TijianbaogaoEntity> ew = new EntityWrapper<TijianbaogaoEntity>();
PageUtils page = tijianbaogaoService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, tijianbaogao), params), params));
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,TijianbaogaoEntity tijianbaogao, HttpServletRequest request){
String tableName = request.getSession().getAttribute("tableName").toString();
if(tableName.equals("yonghu")) {
tijianbaogao.setYonghuming((String)request.getSession().getAttribute("username"));
}
EntityWrapper<TijianbaogaoEntity> ew = new EntityWrapper<TijianbaogaoEntity>();
PageUtils page = tijianbaogaoService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, tijianbaogao), params), params));
return R.ok().put("data", page);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( TijianbaogaoEntity tijianbaogao){
EntityWrapper<TijianbaogaoEntity> ew = new EntityWrapper<TijianbaogaoEntity>();
ew.allEq(MPUtil.allEQMapPre( tijianbaogao, "tijianbaogao"));
return R.ok().put("data", tijianbaogaoService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(TijianbaogaoEntity tijianbaogao){
EntityWrapper< TijianbaogaoEntity> ew = new EntityWrapper< TijianbaogaoEntity>();
ew.allEq(MPUtil.allEQMapPre( tijianbaogao, "tijianbaogao"));
TijianbaogaoView tijianbaogaoView = tijianbaogaoService.selectView(ew);
return R.ok("查询体检报告成功").put("data", tijianbaogaoView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id){
TijianbaogaoEntity tijianbaogao = tijianbaogaoService.selectById(id);
return R.ok().put("data", tijianbaogao);
}
/**
* 前端详情
*/
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Long id){
TijianbaogaoEntity tijianbaogao = tijianbaogaoService.selectById(id);
return R.ok().put("data", tijianbaogao);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody TijianbaogaoEntity tijianbaogao, HttpServletRequest request){
tijianbaogao.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(tijianbaogao);
tijianbaogaoService.insert(tijianbaogao);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody TijianbaogaoEntity tijianbaogao, HttpServletRequest request){
tijianbaogao.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(tijianbaogao);
tijianbaogao.setUserid((Long)request.getSession().getAttribute("userId"));
tijianbaogaoService.insert(tijianbaogao);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
public R update(@RequestBody TijianbaogaoEntity tijianbaogao, HttpServletRequest request){
//ValidatorUtils.validateEntity(tijianbaogao);
tijianbaogaoService.updateById(tijianbaogao);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
tijianbaogaoService.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<TijianbaogaoEntity> wrapper = new EntityWrapper<TijianbaogaoEntity>();
if(map.get("remindstart")!=null) {
wrapper.ge(columnName, map.get("remindstart"));
}
if(map.get("remindend")!=null) {
wrapper.le(columnName, map.get("remindend"));
}
String tableName = request.getSession().getAttribute("tableName").toString();
if(tableName.equals("yonghu")) {
wrapper.eq("yonghuming", (String)request.getSession().getAttribute("username"));
}
int count = tijianbaogaoService.selectCount(wrapper);
return R.ok().put("count", count);
}
}
五、获取源码或论文
如需对应的论文或源码,以及其他定制需求,也可以下方微❤联系。