摘要

随着社会经济的发展,各行业竞争激烈,年轻群体工作压力大,越来越多的人希望通过旅游来缓解压力。而传统的旅行社都是通过事先定制的线路和固定时间,没有个性化定制服务,不能满足现代用户的需求。对于此,开发景区服务系统可以很好的解决用户个性化旅游的服务,通过系统查询各种景点信息,并可以在线预订门票、查询景点攻略,和其他用户在线沟通,制定属于自己的行程计划,不仅可以帮助用户减少制定攻略的时间,还可以帮助用户降低旅游的经济开销,实现旅游的自助服务。在目前信息化发展浪潮下,景区服务系统顺应时代潮流,推广地方旅游服务,带动旅游经济,实现景点和游客双赢的目的。

   本系统是通过面向对象的Java语言搭建系统后台框架,客户端使用微信小程序技术,通过关系型数据库MySQL存储数据。用户只需要通过App访问系统即可获取旅游信息,并可以在线订票、查询攻略等业务,实现了信息的科学管理与查询统计。本文先通过对相关系统的调研,提出开发景区服务系统的意义,然后使用当前主流的技术进行开发,满足景区服务系统的技术要求,然后分析系统需要实现的功能并进行设计。梳理业务流程,并根据功能设计数据库,最后通过编码实现,介绍实现的关键算法逻辑。在测试阶段通过测试用例来确保系统可以正常运行,并达到前期要求的目的。系统的实施方便了旅游宣传,将信息化技术完美的应用在景区服务系统中,使得旅游业务变得简单高效。


关键词:旅游,MySQL,微信小程序,门票预定,景区服务


 

Abstract

With the development of social economy, the competition in various industries is fierce, and young people are under great pressure. More and more people hope to relieve the pressure through tourism. However, traditional travel agencies can not meet the needs of modern users because they do not have personalized customized services through pre customized routes and fixed times. For this reason, the development of the travel plan APP system can well solve the user's personalized travel service. Through the system, you can query various scenic spot information, book tickets online, query scenic spot strategies, communicate with other users online, and develop your own travel plan. It can not only help users reduce the time to develop strategies, but also help users reduce the economic cost of tourism, and achieve tourism self-service. In the current wave of information development, the travel planning APP system conforms to the trend of the times, promotes local tourism services, drives the tourism economy, and achieves the goal of win-win for scenic spots and tourists.

This system uses the object-oriented Java language to build the system background framework, and the client uses 微信小程序 technology to store data through the relational database MySQL. Users only need to access the system through App to obtain tourism information, and can book tickets online, query strategies and other businesses, realizing scientific management and query statistics of information. This paper first puts forward the significance of developing the travel plan APP system through the investigation of relevant systems, then uses the current mainstream technology to develop it to meet the technical requirements of the travel plan APP system, and then analyzes the functions that the system needs to achieve and designs. Sort out the business process, design the database according to the function, and finally introduce the key algorithm logic through coding. In the test phase, test cases are used to ensure the normal operation of the system and achieve the purpose of early requirements. The implementation of the system facilitates tourism publicity. The perfect application of information technology in the travel planning APP system makes tourism business simple and efficient.


Keywords: travel, MySQL, 微信小程序, ticket booking, travel plan


目 录

摘要 I

Abstract II

1 概述 6

1.1 选题背景 6

1.2 选题意义 6

1.3 国内外研究现状 7

1.4 课题内容 8

2 技术介绍 9

2.1 Java语言 9

2.2  MySQL数据库 9

2.3 微信小程序技术 10

3 系统需求分析 11

3.1可行性研究 11

3.1.1操作可行性 11

3.1.2经济可行性 11

3.1.3技术可行性 11

3.2需求分析 11

3.2.1用户用例 11

3.2.3管理员用例 12

3.3系统流程分析 13

4 系统设计 16

4.1系统功能设计 16

4.1.1微信小程序端功能设计 16

4.1.2网站后台功能设计 17

4.2 数据库设计 17

4.2.1 E-R图设计 17

4.2.2 数据表设计 18

5 系统实现 27

5.1 微信小程序端功能实现 27

5.1.1App首页 27

5.1.2 景点信息查看 27

5.1.3 酒店信息查看 28

5.1.4 旅游线路信息查看 29

5.1.5 旅游计划发布 30

5.2 后台模块实现 31

5.2.1 后台登录 31

5.2.2 后台主界面 32

5.2.3 景点管理的实现 33

5.2.4 酒店管理的实现 33

5.2.5 景点预定管理的实现 34

6 系统测试 36

6.1 测试环境 36

6.2 测试内容 36

6.3 测试结论 38

7 总结 39

致  谢 40

参考文献 41



景区服务系统的微信小程序端包括两个部分,一个是用户功能,一个是信息查询功能。

在用户功能中,又包括了用户的注册登录、发布旅游计划、预定景点、修改密码、注册登录。

点击注册按钮,在注册的页面进行个人信息的注册,需要根据系统的提示,填写必须的个人信息才能注册成功。在注册页面通过注册的用户名和密码进行登录。

预定景点,通过点击预定后,在预定页面输入预定的信息,系统根据操作的对象ID保存预定记录到数据库表中,然后在个人中心中查看预定历史,并对预定状态进行修改,也可以删除预定记录。

修改密码,用户登录后才具有修改密码的功能,提供历史密码并修改目前的密码,修改后,数据库记录最新的密码,下次使用修改后的密码进行登录。

在景点信息查询中,输入景点名称,使用SQL语句进行景点名称的模糊搜索,把用户输入的名称相似的记录全部查询出来,显示到界面中。


基于微信小程序的景区服务系统-计算机毕业设计源码+LW文档_微信小程序

基于微信小程序的景区服务系统-计算机毕业设计源码+LW文档_MySQL_02