赞
踩
近年来,信息化管理行业的不断兴起,使得人们的日常生活越来越离不开计算机和互联网技术。首先,根据收集到的用户需求分析,对设计系统有一个初步的认识与了解,确定疫情信息管理系统的总体功能模块。然后,详细设计系统的主要功能模块,通过数据库设计过程将相关的数据信息存储到数据库中,再通过使用关键的开发工具,如IDEA开发平台、AJAX技术等,编码设计相关的功能模块。接着,主要采用功能测试的方式对系统进行测试,找出系统在运行过程中存在的问题,以及解决问题的方法,不断地改进和完善系统的设计。最后,总结本文介绍的系统的设计和实现过程,并且针对于系统的开发提出未来的展望工作。本系统的研发具有重大的意义,在安全性方面,用户使用浏览器访问网站时,采用注册和密码等相关的保护措施,提高系统的可靠性,维护用户的个人信息和财产的安全。在方便性方面,促进了疫情信息管理系统的信息化建设,极大的方便了相关的工作人员对疫情信息管理系统信息进行管理。
关键词:疫情信息管理系统管理;Java语言;B/S模式;AJAX技术;系统测试
Abstract
In recent years, the continuous rise of information management industry makes people’s daily life more and more inseparable from computer and Internet technology. First of all, according to the collected user needs analysis, we have a preliminary understanding and understanding of the design system, and determine the overall function module of the hotel room management system. Then, the main functional modules of the system are designed in detail, and the relevant data information is stored in the database through the process of database design, and then the relevant functional modules of coding design are coded by using key development tools, such as IDEA development platform, JSP technology, etc. Then, the system is tested by functional testing to find out the problems existing in the operation of the system, as well as the methods to solve the problems, and to continuously improve and improve the design of the system. Finally, this paper summarizes the design and implementation process of the system, and puts forward the future prospect for the development of the system. The research and development of this system is of great significance. In terms of security, when users use browsers to visit websites, they adopt registration and password protection measures to improve the reliability of the system and maintain the security of users’ personal information and property. In terms of convenience, it promotes the information construction of hotel room management industry, and greatly facilitates the management of hotel room information by relevant staff.
Key words: hotel room management; Java language; B/S model; JSP technology; System testing
摘要 1
Abstract 1
目 录 2
1绪论 4
1.1研究背景与意义 4
1.2国内外研究现状 4
1.3研究内容 5
1.4论文结构 5
1.5本章小结 5
2理论基础 6
2.1 B/S模式 6
2.2 IDEA开发环境 6
2.3 MySQL数据库 6
2.4 Java语言 7
2.5本章小结 7
3需求分析 8
3.1功能需求分析 8
3.2技术需求分析 8
3.3数据需求分析 8
3.4安全需求分析 8
3.5可行性分析 8
3.5.1经济可行性 8
3.5.2技术可行性 9
3.5.3操作可行性 9
3.6本章小结 9
4系统设计 10
4.1系统功能设计 10
4.2数据库设计 10
4.2.1概念设计 10
4.2.2逻辑设计 11
4.3本章小结 14
5系统实现 15
5.1管理员功能模块实现 15
5.1.1管理员登录 15
5.1.2疫情信息管理 15
5.1.3公告管理 16
5.1.4公告类型管理 16
5.3系统测试 16
5.3.1测试概述 16
5.3.2测试结果 17
5.3本章小结 17
6总结与展望 18
参考文献 19
致谢 20
4.1系统功能设计
本系统主要通过使用Java语言编码设计系统功能,MySQL数据库管理数据,AJAX技术设计简洁的、友好的网址页面,然后在IDEA开发平台中,编写相关的Java代码文件,接着通过连接语言完成与数据库的搭建工作,再通过平台提供的Tomcat插件完成信息的交互,最后在浏览器中打开系统网址便可使用本系统。本系统的使用角色可以被分为用户和管理员,用户具有注册、查看信息、留言信息等功能,管理员具有修改用户信息,发布新闻等功能,系统总体功能设计图如图4-1所示。
图4-1系统总体功能设计图
4.2数据库设计
4.2.1概念设计
在数据库设计过程中,概念设计阶段是逻辑设计阶段得以实现的基础,也是根据用户参与情况确定对数据的处理要求,从而使得数据库设计成功的关键。概念设计的主要任务是将现实世界的所收集到的使用需求转化为抽象的信息世界结构的过程,能够真实的反映现实生活中实体与实体之间的联系,数据库的相关语法和代码比较容易理解和修改,方便相关人员将相关的数据信息存储到数据库中,并对其进行修改和使用[18]。
通过将现实世界中的实体、属性、联系等内容进行概念设计,建立比较抽象的概念数据模型,即E-R图。通过E-R图可将现实世界抽象到的概念设计转变成数据库的实体设计,并且能够明显的看见各个实体之间,数据的流动情况,具体较强的表达能力,更加方便于开发人员寻找与发现用户具体的需求[19]。因此,E-R的建立,在整个数据库的设计过程中,起着至关重要的作用。本系统主要的实体有管理员、用户、留言等。在E-R图中,矩形表示实体集,椭圆形表示属性,菱形表示联系。其中,联系的类型包括1:1(一对一)、1:n(一对多)、n:m(多对多)关系。
4.2.2逻辑设计
本系统使用MySQL数据库管理与系统相关的数据信息。逻辑设计阶段是将上一个阶段中的概念数据模型,转换为方便数据库进行存储的关系模型,即基本表的形式,方便开发人员后期对数据模型进行优化和管理[20]。逻辑设计阶段是整个数据库设计设计的关键,与系统有关的信息将会在这一阶段中被存储在数据库中,当用户使用本系统进行相关的功能操作时,与之有关的数据信息所在的基本表会发生相应的更新变化。数据库的逻辑设计阶段主要任务是将与系统相关的数据信息,设计成为方便数据库存储和管理的基本表格的形式,具体内容如下。
表4.1打卡表
序号 列名 数据类型 说明 允许空
1 Id Int id 否
2 yonghu_id Integer 用户 是
3 daka_time Date 打卡时间 是
4 insert_time Date 打卡日期 是
5 didian_address String 打卡地点 是
6 daka_content String 打卡备注 是
7 create_time Date 创建时间 是
表4.2字典表
序号 列名 数据类型 说明 允许空
1 Id Int id 否
2 dic_code String 字段 是
3 dic_name String 字段名 是
4 code_index Integer 编码 是
5 index_name String 编码名字 是
6 super_id Integer 父字段id 是
7 beizhu String 备注 是
8 create_time Date 创建时间 是
表4.3地区表
序号 列名 数据类型 说明 允许空
1 Id Int id 否
2 diqu_uuid_number String 地区编号 是
3 diqu_name String 地区名称 是
4 diqu_address String 地区位置 是
5 fengxian_types Integer 地区风险等级 是
6 diqu_content String 地区详情 是
7 create_time Date 创建时间 是
表4.4公告表
序号 列名 数据类型 说明 允许空
1 Id Int id 否
2 gonggao_name String 公告名称 是
3 gonggao_types Integer 公告类型 是
4 gonggao_content String 公告内容 是
5 insert_time Date 公告发布时间 是
6 create_time Date 创建时间 是
表4.5核酸预约表
序号 列名 数据类型 说明 允许空
1 Id Int id 否
2 yonghu_id Integer 用户 是
3 hesuanyuyue_uuid_number String 预约编号 是
4 yuyue_time Date 预约检测时间 是
5 jiancedian_types Integer 检测点 是
6 yuyue_content String 预约备注 是
7 hesuanyuyue_types Integer 核酸预约状态 是
8 shiji_time Date 实际检测时间 是
9 jiancejieguo_types Integer 检测结果 是
10 hesuanyuyue_file String 检测文件 是
11 beizhu_content String 备注 是
12 insert_time Date 申请时间 是
13 create_time Date 创建时间 是
表4.6社区管控表
序号 列名 数据类型 说明 允许空
1 Id Int id 否
2 shequ_types Integer 社区 是
3 kaishi_time Date 管控开始时间 是
4 jieshu_time Date 管控结束时间 是
5 yuanyou_content String 管控原因 是
6 fengxian_types Integer 管控等级 是
7 beizhu_content String 管控备注 是
8 insert_time Date 添加时间 是
9 create_time Date 创建时间 是
表4.7疫苗预约表
序号 列名 数据类型 说明 允许空
1 Id Int id 否
2 yonghu_id Integer 用户 是
3 yimiaoyuyue_uuid_number String 预约编号 是
4 zhen_types Integer 第几针 是
5 yuyue_content String 预约备注 是
6 yimiaoyuyue_types Integer 疫苗预约状态 是
7 yuyue_time Date 预约打针时间 是
8 shiji_time Date 实际打针时间 是
9 yimiao_bianhao String 疫苗编号 是
10 yimiaoshengchan_time Date 疫苗生产日期 是
11 yimiaogongsi_types Integer 疫苗公司 是
12 beizhu_content String 备注 是
13 insert_time Date 申请时间 是
14 create_time Date 创建时间 是
表4.8疫情信息表
序号 列名 数据类型 说明 允许空
1 Id Int id 否
2 yiqingxinxi_name String 疫情信息名称 是
3 yiqingxinxi_types Integer 疫情信息类型 是
4 yiqingxinxi_content String 疫情信息内容 是
5 insert_time Date 疫情信息发布时间 是
6 create_time Date 创建时间 是
表4.9用户表
序号 列名 数据类型 说明 允许空
1 Id Int id 否
2 yonghu_uuid_number String 用户编号 是
3 yonghu_name String 用户姓名 是
4 yonghu_phone String 用户手机号 是
5 yonghu_id_number String 用户身份证号 是
6 yonghu_photo String 用户头像 是
7 yonghu_email String 电子邮箱 是
8 create_time Date 创建时间 是
表4.10用户行程表
序号 列名 数据类型 说明 允许空
1 Id Int id 否
2 yonghu_id Integer 用户 是
3 diqu_id Integer 地区 是
4 qu_time Date 去的时间 是
5 hui_time Date 回的时间 是
6 yuanyou_content String 去的缘由 是
7 insert_time Date 添加时间 是
8 create_time Date 创建时间 是
表4.11社区管理员表
序号 列名 数据类型 说明 允许空
1 Id Int id 否
2 shequguanliyuan_uuid_number String 社区管理员编号 是
3 shequguanliyuan_name String 社区管理员姓名 是
4 shequguanliyuan_phone String 社区管理员手机号 是
5 shequguanliyuan_id_number String 社区管理员身份证号 是
6 shequguanliyuan_photo String 社区管理员头像 是
7 zhiwei_types Integer 职位 是
8 shequ_types Integer 所属社区 是
9 shequguanliyuan_email String 电子邮箱 是
10 create_time Date 创建时间 是
表4.12管理员表
序号 列名 数据类型 说明 允许空
1 Id Int id 否
2 username String 用户名 是
3 password String 密码 是
4 role String 角色 是
5 addtime Date 新增时间 是
4.3本章小结
本章主要介绍了系统功能设计、数据库设计等内容。通过设计系统的总体功能框架,确定系统的功能设计主要包括疫情信息等模块。数据库设计主要分为概念设计阶段和逻辑设计阶段,其中,概念设计是将现实世界中的数据转变为信息世界中的概念模型,逻辑设计是将概念设计中的概念模型转变成可以被数据库存储的数据表格。系统功能设计好坏是系统得以被编码实现的重要依据。数据库设计是否符合规范,是系统能够成功运行的基本保障,也是用户和系统实现交互处理的重要前提。
5.1管理员功能模块实现
5.1.1管理员登录
管理员可以选择任一浏览器打开网址,输入信息无误后,以管理员的身份行使相关的管理权限,管理员登录界面设计如图5-1所示。
图5-1管理员登录界面
5.1.2疫情信息管理
管理员可以通过选择疫情信息管理,管理相关的疫情信息信息记录,比如进行查看疫情信息信息标题,修改疫情信息信息来源等操作,疫情信息管理界面设计如图5-2所示。
图5-2疫情信息管理界面
5.1.3公告管理
管理员可以通过选择公告管理,管理相关的公告信息记录,比如进行查看公告详情,删除错误的公告信息,发布公告等操作,公告管理界面如图5-3所示。
图5-3 公告管理界面
5.1.4公告类型管理
管理员可以通过选择公告类型管理,管理相关的公告类型信息,比如查看所有公告类型,删除无用公告类型,修改公告类型,添加公告类型等操作,公告类型管理界面设计如图5-4所示。
图5-4公告类型管理界面
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。