云计算百科
云计算领域专业知识百科平台

心理障碍诊断|基于SprinBoot+vue人格障碍诊断系统(源码+数据库+文档)

人格障碍诊断系统

目录

基于SprinBoot+vue人格障碍诊断统

一、前言

二、系统设计

三、系统功能设计 

四、数据库设计

 五、核心代码 

六、论文参考

七、最新计算机毕设选题推荐

八、源码获取:


博主介绍:✌️大厂码农|毕设布道师,阿里云开发社区乘风者计划专家博主,CSDN平台Java领域优质创作者,专注于大学生项目实战开发、讲解和毕业答疑辅导。✌️

主要项目:小程序、SpringBoot、SSM、Vue、Html、Jsp、Nodejs等设计与开发。

🍅文末获取源码联系🍅

基于SprinBoot+vue人格障碍诊断系统

一、前言

社会发展日新月异,用计算机应用实现数据管理功能已经算是很完善的了,但是随着移动互联网的到来,处理信息不再受制于地理位置的限制,处理信息及时高效,备受人们的喜爱。本次开发一套人格障碍诊断系统,有管理员,医生,用户三个角色。管理员可以管理所有,包含个人中心,用户管理,医生管理,公告信息管理,咨询信息管理,诊断记录管理,测试模板管理,试题管理,系统管理,考试管理等。医生和用户都可以注册登录,医生主要接待用户的咨询,并且管理自己参与的诊断记录。用户主要可以参考测试,咨询医生,查看自己的诊断记录等。人格障碍诊断系统服务端用Java开发,用Spring Boot框架开发的网站后台,数据库用到了MySQL数据库作为数据的存储。这样就让用户用着方便快捷,都通过同一个后台进行业务处理,而后台又可以根据并发量做好部署,用硬件和软件进行协作,满足于数据的交互式处理,让用户的数据存储更安全,得到数据更方便。

关键字:人格障碍诊断系统;Spring Boot框架;Java;MySQL

二、系统设计

系统功能结构如图

三、系统功能设计 

用户不登录可以查看医生信息,但是要咨询医生必须注册登录。

图5-5 医生信息页面

用户可以点击测试模板参考里面的考试。

图5-6 测试模板页面

用户参考过考试后可以在个人中心,考试记录里面查看自己的考试记录。

图5-7 考试记录页面

管理员可以对测试模板进行添加,修改,删除,查询操作。

图5-3 测试模板管理页面

医生可以对诊断记录进行添加,修改,删除操作。

图5-4 诊断记录管理页面

四、数据库设计

(1)管理员实体属性图通过Visio工具绘制,绘制结果展示如下:

图4-4 管理员实体属性图

(2)用户实体属性图通过Visio工具绘制,绘制结果展示如下:

图4-5 用户实体属性图

(3)公告信息实体属性图通过Visio工具绘制,绘制结果展示如下:

图4-6 公告信息实体属性图

1咨询信息表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

addtime

Date

创建时间

3

yishengzhanghao

String

医生账号

4

yishengxingming

String

医生姓名

5

yishengzhiwei

String

医生职位

6

zixunneirong

String

资询内容

7

zixunshijian

datetime

咨询时间

8

yonghuzhanghao

String

用户账号

9

yonghuxingming

String

用户姓名

10

sfsh

String

是否审核

11

shhf

String

审核回复

2试题表表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

addtime

Date

创建时间

3

paperid

Integer

所属测试模板id(外键)

4

papername

String

测试模板名称

5

questionname

String

试题名称

6

options

String

选项,json字符串

7

score

Integer

分值

8

answer

String

正确答案

9

analysis

String

答案解析

10

type

Integer

试题类型,0:单选题 1:多选题 2:判断题 3:填空题(暂不考虑多项填空)

11

sequence

Integer

试题排序,值越大排越前面

3用户表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

addtime

Date

创建时间

3

yonghuzhanghao

String

用户账号

4

yonghuxingming

String

用户姓名

5

mima

String

密码

6

xingbie

String

性别

7

shoujihao

String

手机号

8

touxiang

String

头像

4诊断记录表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

addtime

Date

创建时间

3

yonghuzhanghao

String

用户账号

4

yonghuxingming

String

用户姓名

5

zhenduanneirong

String

诊断内容

6

yishengzhanghao

String

医生账号

7

yishengxingming

String

医生姓名

8

zhenduanshijian

datetime

诊断时间

 五、核心代码 

package com.service.impl;

import com.utils.StringUtil;
import com.service.DictionaryService;
import com.utils.ClazzDiff;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.lang.reflect.Field;
import java.util.*;
import com.baomidou.mybatisplus.plugins.Page;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.transaction.annotation.Transactional;
import com.utils.PageUtils;
import com.utils.Query;
import org.springframework.web.context.ContextLoader;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
import org.springframework.lang.Nullable;
import org.springframework.util.Assert;
import com.dao.FangwuDao;
import com.entity.FangwuEntity;
import com.service.FangwuService;
import com.entity.view.FangwuView;

@Service("fangwuService")
@Transactional
public class FangwuServiceImpl extends ServiceImpl<FangwuDao, FangwuEntity> implements FangwuService {

@Override
public PageUtils queryPage(Map<String,Object> params) {
Page<FangwuView> page =new Query<FangwuView>(params).getPage();
page.setRecords(baseMapper.selectListView(page,params));
return new PageUtils(page);
}

}

package com.service.impl;

import com.utils.StringUtil;
import com.service.DictionaryService;
import com.utils.ClazzDiff;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.lang.reflect.Field;
import java.util.*;
import com.baomidou.mybatisplus.plugins.Page;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.transaction.annotation.Transactional;
import com.utils.PageUtils;
import com.utils.Query;
import org.springframework.web.context.ContextLoader;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
import org.springframework.lang.Nullable;
import org.springframework.util.Assert;
import com.dao.FeiyongDao;
import com.entity.FeiyongEntity;
import com.service.FeiyongService;
import com.entity.view.FeiyongView;

@Service("feiyongService")
@Transactional
public class FeiyongServiceImpl extends ServiceImpl<FeiyongDao, FeiyongEntity> implements FeiyongService {

@Override
public PageUtils queryPage(Map<String,Object> params) {
Page<FeiyongView> page =new Query<FeiyongView>(params).getPage();
page.setRecords(baseMapper.selectListView(page,params));
return new PageUtils(page);
}

}

六、论文参考

七、最新计算机毕设选题推荐

最新计算机软件毕业设计选题大全-CSDN博客

八、源码获取:

 大家点赞、收藏、关注、评论啦 、👇🏻获取联系方式在文章末尾👇🏻

赞(0)
未经允许不得转载:网硕互联帮助中心 » 心理障碍诊断|基于SprinBoot+vue人格障碍诊断系统(源码+数据库+文档)
分享到: 更多 (0)

评论 抢沙发

评论前必须登录!