没有合适的资源?快使用搜索试试~ 我知道了~
基于SaaS的会务管理系统的设计与实现.doc

温馨提示


试读
64页
系统包括PC端和移动端,PC端包括登录注册、大会管理、人员管理、报名管理、弹幕管理、题库和考试管理这些功能模块。移动端包括发送弹幕、查看大会指南、答题闯关功能模块。在PC端,进入管理员界面,可以实现配置大会、指南、报名、活动、题库、考试信息、导入Excel中人员、题目列表等功能。在移动端,参会人员通过注册登录进入系统,参会人员可实现扫码签到、弹幕互动、参加竞速或得分模式的考试等功能。
资源推荐
资源详情
资源评论











基于 SaaS 的会务管理系统的设计与实现
摘 要
本文通过设计与实现会务管理子系统,以软件即服务的形式,为客户提供一体化
的软件服务。并在基本的会务管理基础上,实现了参会人员与会议进行交互环节的功
能。
系统包括 PC 端和移动端,PC 端包括登录注册、大会管理、人员管理、报名管理、
弹幕管理、题库和考试管理这些功能模块。移动端包括发送弹幕、查看大会指南、答
题闯关功能模块。在 PC 端,进入管理员界面,可以实现配置大会、指南、报名、活动、
题库、考试信息、导入 Excel 中人员、题目列表等功能。在移动端,参会人员通过注册
登录进入系统,参会人员可实现扫码签到、弹幕互动、参加竞速或得分模式的考试等
功能。
系统前端使用 Visual Studio Code 开发工具,应用 Vue.js 技术完成界面设计。后端
在 Win10 环境下配置好 Redis、Java 运行环境,使用 IDEA 开发工具,部署和配置相关
Gradle 文件,采用 Spring boot 和 MongoDB 技术,通过 Swagger 生成接口 API 文档,实
现前后端分离开发过程。会务管理系统提升了会议组织及决策的效率、效果,保证了
工作质量,提升了企业执行力。
关键词:会务管理系统,交互功能,Spring boot,MongoDB,软件即服务
I

Design and Implementation of Conference Management System Based
on SaaS
Abstract
This paper realizes the conference by designing and implementing the “Yonyou cloud”
to achieve integrated management of meetings. Provide customers with integrated software
services in the form of software as a service. And on the basis of basic conference
management, realized the interactive of the participants and the conference 。
The system includes a PC end and a mobile terminal. The PC side includes the functional
modules of conference management, personnel management, registration management,
barrage management, question bank and test management. The mobile terminal includes the
function module of send barrage, conference guide, and exam. On the PC side, enter the
administrator interface, admin can configure the conference, guide, enroll, activities, question
bank, exam information, import excel personnel, questions list and other functions. On the
mobile side, participants log in to enter the system, and participants can perform functions
such as scanning QR code signing, barrage interaction, and participating the speed mode or
the score mode exam.
The system front end uses Visual Studio Code development tools and uses vue.js
technology to complete the interface design. The backend is configured with Redis and Java
runtime environment in Win10 environment. Use IDEA development tools to deploy and
configure related Gradle files. Use Spring boot and MongoDB technologies, and generate
interface API files through swagger to realize the separation process between front and back.
The conference management system enhances the efficiency and effectiveness of conference
organization and decision-making, ensures the quality of work, and improve the execution of
corporate.
Key Words: The System Of Conference Management, Interactive function, Spring
boot,MongoDB, SaaS
II

目 录
1 绪 论 5
1.1 题目背景和研究意义............................................................................5
1.2 国内外研究现状...................................................................................6
1.3 本文主要工作.......................................................................................6
1.4 论文结构.............................................................................................7
2 需求分析 8
2.1 总体需求分析.......................................................................................8
2.1.1 系统描述..........................................................................................8
2.1.2 系统总体需求分析.......................................................................8
2.2 功能需求分析.......................................................................................9
2.2.1 大会创建业务..............................................................................9
2.2.2 大会指南与活动业务..................................................................10
2.2.3 报名管理业务............................................................................11
2.2.4 参会人员管理............................................................................11
2.2.5 弹幕管理业务............................................................................12
2.2.6 答题管理业务............................................................................12
2.3 本章小结...........................................................................................13
3 总体设计 14
3.1 系统设计目标.....................................................................................14
3.2 系统总体功能设计..............................................................................14
3.3 系统总体架构设计..............................................................................15
3.4 功能模块设计.....................................................................................17
3.4.1 注册登录模块............................................................................17
3.4.2 大会管理模块............................................................................18
3.4.3 报名管理模块............................................................................18
3.4.4 人员管理模块............................................................................18
3.4.5 大会弹幕模块............................................................................19
3.4.6 大会答题模块............................................................................19
3.5 数据库设计........................................................................................19
3.5.1 数据库 E-R 图设计.....................................................................19
3.5.2 数据库总体设计.........................................................................22
3.5.3 数据库集合设计.........................................................................23
3.6 本章小结...........................................................................................27
4 详细设计 28
4.1 系统功能模块详细设计........................................................................28
4.1.1 注册登录模块............................................................................28
4.1.2 大会管理模块............................................................................29
4.1.3 人员签到模块............................................................................33
4.1.4 大会弹幕模块............................................................................34
4.1.5 大会答题模块............................................................................35
4.2 本章小结...........................................................................................39
5 系统实现 40
5.1 系统整体架构实现..............................................................................40
III

5.2 系统登录注册模块..............................................................................41
5.3 大会管理模块实现..............................................................................43
5.4 报名管理模块实现..............................................................................45
5.4.1 WEB 端签到设置实现.................................................................45
5.4.2 签到二维码实现.........................................................................46
5.4.3 移动端验证码实现.....................................................................46
5.5 大会弹幕模块实现..............................................................................47
5.6 答题功能模块实现..............................................................................48
5.6.1 WEB 端答题基本设置实现..........................................................48
5.6.2 答题 Excel 导入功能实现............................................................49
5.6.3 答题防作弊功能实现..................................................................50
5.6.4 答题移动端功能实现..................................................................52
5.7 本章小结...........................................................................................55
6 系统测试 56
6.1 测试目标...........................................................................................56
6.2 测试用例...........................................................................................56
6.3 测试内容...........................................................................................59
6.3.1 测试环境..................................................................................59
6.3.2 功能测试..................................................................................59
6.3.3 接口测试..................................................................................59
6.3.4 压力测试..................................................................................60
6.4 本章小结...........................................................................................61
结 论 62
参考文献 64
IV
剩余63页未读,继续阅读
资源评论

- 身在江湖的郭大侠2021-03-10你好,小白学技术,能不能给出代码参考参考

beans9
- 粉丝: 29
- 资源: 52
上传资源 快速赚钱
我的内容管理 展开
我的资源 快来上传第一个资源
我的收益
登录查看自己的收益我的积分 登录查看自己的积分
我的C币 登录后查看C币余额
我的收藏
我的下载
下载帮助


安全验证
文档复制为VIP权益,开通VIP直接复制
