文章目录
详细视频演示
文章底部名片,获取项目的完整演示视频,免费解答技术疑问
项目介绍
如今的信息时代,对信息的共享性,信息的流通性有着较高要求,因此传统管理方式就不适合。为了让管理模式进行升级,也为了更好的维护信息,个人健康管理系统的开发运用就显得很有必要。并且通过开发个人健康管理系统,不仅可以让所学的微信小程序技术得到实际运用,也可以掌握MySQL的使用方法,对自身编程能力也有一个检验和提升的过程。尤其是通过实践,可以对系统的开发流程加深印象,无论是前期的分析与设计,还是后期的编码测试等环节,都可以有一个深刻的了解。
借助于个人健康管理系统这样的工具,让信息系统化,流程化,规范化是最终的发展结果,让其遵循实际操作流程的情况下,对信息实施规范化处理,让信息通过电子的方式进行保存,无论是管理人员检索信息,可以便利化操作,真正缩短信息处理时间,节省人力和信息管理的成本。
技术介绍
开发语言:Java
框架:springboot
JDK版本:JDK1.8
服务器:tomcat7
数据库:mysql
数据库工具:Navicat11
开发软件:eclipse/myeclipse/idea
Maven包:Maven
安卓框架:uniapp
安卓开发软件:HBuilder X
开发模式:混合开发
功能介绍
这部分内容使用结构图这样的工具,显示设计结果,设计的管理员功能见下图。管理员为用户忘记密码时可以重置用户密码.
图4-1 管理员功能结构图
核心代码
package com.example.controller;
import cn.hutool.core.util.StrUtil;
import cn.hutool.crypto.SecureUtil;
import com.example.common.Result;
import com.example.common.ResultCode;
import com.example.entity.Caiwu;
import com.example.exception.CustomException;
import com.example.service.CaiwuService;
import com.example.utils.MapWrapperUtils;
import com.example.utils.jwt.JwtUtil;
import com.example.vo.CaiwuVo;
import org.springframework.beans.BeanUtils;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@RestController
@RequestMapping(value = "/caiwu")
public class CaiwuController {
@Resource
private CaiwuService caiwuService;
@PostMapping
public Result<Caiwu> add(@RequestBody CaiwuVo caiwu) {
caiwuService.add(caiwu);
return Result.success(caiwu);
}
@PostMapping("/deleteList")
public Result<Caiwu> deleteList(@RequestBody CaiwuVo caiwu) {
caiwuService.deleteList(caiwu.getList());
return Result.success();
}
@DeleteMapping("/{id}")
public Result delete(@PathVariable Long id) {
caiwuService.delete(id);
return Result.success();
}
@PutMapping
public Result update(@RequestBody CaiwuVo caiwu) {
caiwuService.update(caiwu);
return Result.success();
}
@GetMapping("/{id}")
public Result<Caiwu> detail(@PathVariable Integer id) {
Caiwu caiwu = caiwuService.findById(id);
return Result.success(caiwu);
}
@GetMapping
public Result<List<Caiwu>> all() {
return Result.success(caiwuService.list());
}
@PostMapping("/page")
public Result<CaiwuVo> page(@RequestBody CaiwuVo caiwuVo) {
return Result.success(caiwuService.findPage(caiwuVo));
}
@PostMapping("/login")
public Result login(@RequestBody Caiwu caiwu, HttpServletRequest request) {
if (StrUtil.isBlank(caiwu.getZhanghao()) || StrUtil.isBlank(caiwu.getMima())) {
throw new CustomException(ResultCode.PARAM_LOST_ERROR);
}
Caiwu login = caiwuService.login(caiwu);
// if(!login.getStatus()){
// return Result.error("1001","状态限制,无法登录系统");
// }
if(login != null) {
HashMap hashMap = new HashMap();
hashMap.put("user", login);
Map<String, Object> map = MapWrapperUtils.builder(MapWrapperUtils.KEY_USER_ID,caiwu.getId());
String token = JwtUtil.creatToken(map);
hashMap.put("token", token);
return Result.success(hashMap);
}else {
return Result.error();
}
}
@PutMapping("/updatePassword")
public Result updatePassword(@RequestBody Caiwu info, HttpServletRequest request) {
Caiwu caiwu = caiwuService.findById(info.getId());
String oldPassword = SecureUtil.md5(info.getMima());
if (!oldPassword.equals(caiwu.getMima())) {
return Result.error(ResultCode.PARAM_PASSWORD_ERROR.code, ResultCode.PARAM_PASSWORD_ERROR.msg);
}
info.setMima(SecureUtil.md5(info.getNewPassword()));
Caiwu caiwu1 = new Caiwu();
BeanUtils.copyProperties(info, caiwu1);
caiwuService.update(caiwu1);
return Result.success();
}
}
数据库参考
/*!40101 SET NAMES utf8 */;
/*!40101 SET SQL_MODE=''*/;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
CREATE DATABASE /*!32312 IF NOT EXISTS*/`rentijiankangguanli` /*!40100 DEFAULT CHARACTER SET utf8 */;
USE `rentijiankangguanli`;
/*Table structure for table `config` */
DROP TABLE IF EXISTS `config`;
CREATE TABLE `config` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`name` varchar(100) DEFAULT NULL COMMENT '配置参数名称',
`value` varchar(100) DEFAULT NULL COMMENT '配置参数值',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='配置文件';
/*Data for the table `config` */
insert into `config`(`id`,`name`,`value`) values (1,'轮播图1','upload/config1.jpg'),(2,'轮播图2','upload/config2.jpg'),(3,'轮播图3','upload/config3.jpg');
/*Table structure for table `dictionary` */
DROP TABLE IF EXISTS `dictionary`;
CREATE TABLE `dictionary` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`dic_code` varchar(200) DEFAULT NULL COMMENT '字段',
`dic_name` varchar(200) DEFAULT NULL COMMENT '字段名',
`code_index` int(11) DEFAULT NULL COMMENT '编码',
`index_name` varchar(200) DEFAULT NULL COMMENT '编码名字 Search111 ',
`super_id` int(11) DEFAULT NULL COMMENT '父字段id',
`beizhu` varchar(200) DEFAULT NULL COMMENT '备注',
`create_time` timestamp NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COMMENT='字典';
/*Data for the table `dictionary` */
insert into `dictionary`(`id`,`dic_code`,`dic_name`,`code_index`,`index_name`,`super_id`,`beizhu`,`create_time`) values (1,'meishi_types','饮食类型',1,'早餐',NULL,NULL,'2023-03-01 20:59:13'),(2,'meishi_types','饮食类型',2,'午餐',NULL,NULL,'2023-03-01 20:59:13'),(3,'meishi_types','饮食类型',3,'晚餐',NULL,NULL,'2023-03-01 20:59:13'),(4,'yundong_types','运动类型',1,'运动类型1',NULL,NULL,'2023-03-01 20:59:13'),(5,'yundong_types','运动类型',2,'运动类型2',NULL,NULL,'2023-03-01 20:59:13'),(6,'yundong_types','运动类型',3,'运动类型3',NULL,NULL,'2023-03-01 20:59:13'),(7,'shenti_types','身体状况',1,'偏瘦',NULL,NULL,'2023-03-01 20:59:13'),(8,'shenti_types','身体状况',2,'正常',NULL,NULL,'2023-03-01 20:59:13'),(9,'shenti_types','身体状况',3,'超重',NULL,NULL,'2023-03-01 20:59:13'),(10,'shenti_types','身体状况',4,'肥胖',NULL,NULL,'2023-03-01 20:59:13'),(11,'news_types','公告类型',1,'公告类型1',NULL,NULL,'2023-03-01 20:59:13'),(12,'news_types','公告类型',2,'公告类型2',NULL,NULL,'2023-03-01 20:59:13'),(13,'news_types','公告类型',3,'公告类型3',NULL,NULL,'2023-03-01 20:59:13'),(14,'sex_types','性别',1,'男',NULL,NULL,'2023-03-01 20:59:13'),(15,'sex_types','性别',2,'女',NULL,NULL,'2023-03-01 20:59:13'),(16,'forum_state_types','帖子状态',1,'发帖',NULL,NULL,'2023-03-01 20:59:13'),(17,'forum_state_types','帖子状态',2,'回帖',NULL,NULL,'2023-03-01 20:59:13');
/*Table structure for table `forum` */
DROP TABLE IF EXISTS `forum`;
CREATE TABLE `forum` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
`forum_name` varchar(200) DEFAULT NULL COMMENT '帖子标题 Search111 ',
`yonghu_id` int(11) DEFAULT NULL COMMENT '用户',
`users_id` int(11) DEFAULT NULL COMMENT '管理员',
`forum_content` text COMMENT '发布内容',
`super_ids` int(11) DEFAULT NULL COMMENT '父id',
`forum_state_types` int(11) DEFAULT NULL COMMENT '帖子状态',
`insert_time` timestamp NULL DEFAULT NULL COMMENT '发帖时间',
`update_time` timestamp NULL DEFAULT NULL COMMENT '修改时间',
`create_time` timestamp NULL DEFAULT NULL COMMENT '创建时间 show2',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 COMMENT='论坛';
/*Data for the table `forum` */
insert into `forum`(`id`,`forum_name`,`yonghu_id`,`users_id`,`forum_content`,`super_ids`,`forum_state_types`,`insert_time`,`update_time`,`create_time`) values (1,'帖子标题1',1,NULL,'发布内容1',226,1,'2023-03-01 20:59:50','2023-03-01 20:59:50','2023-03-01 20:59:50'),(2,'帖子标题2',2,NULL,'发布内容2',32,1,'2023-03-01 20:59:50','2023-03-01 20:59:50','2023-03-01 20:59:50'),(3,'帖子标题3',2,NULL,'发布内容3',364,1,'2023-03-01 20:59:50','2023-03-01 20:59:50','2023-03-01 20:59:50'),(4,'帖子标题4',2,NULL,'发布内容4',196,1,'2023-03-01 20:59:50','2023-03-01 20:59:50','2023-03-01 20:59:50'),(5,'帖子标题5',1,NULL,'发布内容5',135,1,'2023-03-01 20:59:50','2023-03-01 20:59:50','2023-03-01 20:59:50'),(6,'帖子标题6',2,NULL,'发布内容6',289,1,'2023-03-01 20:59:50','2023-03-01 20:59:50','2023-03-01 20:59:50'),(7,'帖子标题7',3,NULL,'发布内容7',430,1,'2023-03-01 20:59:50','2023-03-01 20:59:50','2023-03-01 20:59:50'),(8,'帖子标题8',1,NULL,'发布内容8',301,1,'2023-03-01 20:59:50','2023-03-01 20:59:50','2023-03-01 20:59:50'),(9,'帖子标题9',1,NULL,'发布内容9',1,1,'2023-03-01 20:59:50','2023-03-01 20:59:50','2023-03-01 20:59:50'),(10,'帖子标题10',1,NULL,'发布内容10',243,1,'2023-03-01 20:59:50','2023-03-01 20:59:50','2023-03-01 20:59:50'),(11,'帖子标题11',1,NULL,'发布内容11',479,1,'2023-03-01 20:59:50','2023-03-01 20:59:50','2023-03-01 20:59:50'),(12,'帖子标题12',3,NULL,'发布内容12',251,1,'2023-03-01 20:59:50','2023-03-01 20:59:50','2023-03-01 20:59:50'),(13,'帖子标题13',1,NULL,'发布内容13',142,1,'2023-03-01 20:59:50','2023-03-01 20:59:50','2023-03-01 20:59:50'),(14,'帖子标题14',1,NULL,'发布内容14',78,1,'2023-03-01 20:59:50','2023-03-01 20:59:50','2023-03-01 20:59:50'),(15,NULL,NULL,1,'3123123',14,2,'2023-03-02 09:09:49',NULL,'2023-03-02 09:09:49'),(16,NULL,1,NULL,'321321',14,2,'2023-03-02 09:13:44',NULL,'2023-03-02 09:13:44');
/*Table structure for table `gerentizheng` */
DROP TABLE IF EXISTS `gerentizheng`;
CREATE TABLE `gerentizheng` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键 ',
`yonghu_id` int(11) DEFAULT NULL COMMENT '用户',
`gerentizheng_num` decimal(10,2) DEFAULT NULL COMMENT '当前身高',
`tizhong_num` decimal(10,2) DEFAULT NULL COMMENT '当前体重',
`shenti_types` int(11) DEFAULT NULL COMMENT '身体状况',
`gerentizheng_content` text COMMENT '备注',
`gerentizheng_delete` int(11) DEFAULT NULL COMMENT '逻辑删除',
`insert_time` timestamp NULL DEFAULT NULL COMMENT '添加时间',
`create_time` timestamp NULL DEFAULT NULL COMMENT '创建时间 show3 listShow',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 COMMENT='个人体征';
系统效果图
源码获取
下方名片联系我即可!!
标签:03,vue,20,springboot,01,源码,2023,59,NULL From: https://blog.csdn.net/QQ1039692211/article/details/144157767
大家点赞、收藏、关注、评论啦 、查看