基于Java+Swing+Mysql实现旅游管理信息系统
一、系统介绍
用户:登陆、注册、旅游信息查询、查看游行团信息、报名
管理员:登陆、注册、旅游信息查询、查看游行团信息、报名、报名信息管理
运行环境:eclipse/idea/mysql5.7以上
二、功能展示
1.登陆
2.注册
3.旅游信息查询
4.查看游行团信息
5.报名
6、报名信息管理
三、数据库
/*
Navicat MySQL Data Transfer
Source Server : logTest
Source Server Version : 50527
Source Host : localhost:3306
Source Database : case8
Target Server Type : MYSQL
Target Server Version : 50527
File Encoding : 65001
Date: 2021-12-27 12:20:10
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for tourism_group
-- ----------------------------
DROP TABLE IF EXISTS `tourism_group`;
CREATE TABLE `tourism_group` (
`group_num` int(10) NOT NULL AUTO_INCREMENT,
`group_name` varchar(20) NOT NULL,
`group_contact` varchar(20) NOT NULL,
`group_address` varchar(20) NOT NULL,
`group_phone` varchar(20) NOT NULL,
PRIMARY KEY (`group_num`)
) ENGINE=InnoDB AUTO_INCREMENT=667 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of tourism_group
-- ----------------------------
INSERT INTO `tourism_group` VALUES ('233', '随心所欲旅行团', '小李', '天津', '13125587654');
INSERT INTO `tourism_group` VALUES ('666', '夕阳红旅行团', '嵩秉义', '中国香港', '13125567899');
-- ----------------------------
-- Table structure for tourism_line
-- ----------------------------
DROP TABLE IF EXISTS `tourism_line`;
CREATE TABLE `tourism_line` (
`route_num` int(10) NOT NULL AUTO_INCREMENT COMMENT '线路号',
`origin` varchar(30) NOT NULL,
`destination` varchar(30) NOT NULL,
`day_num` int(10) NOT NULL,
`attractions` varchar(30) NOT NULL,
`group_num` int(10) NOT NULL,
PRIMARY KEY (`route_num`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=gbk;
-- ----------------------------
-- Records of tourism_line
-- ----------------------------
INSERT INTO `tourism_line` VALUES ('1', '西安', '丽江', '3', '丽江古城', '233');
INSERT INTO `tourism_line` VALUES ('2', '西安', '大理', '5', '大理古城', '666');
INSERT INTO `tourism_line` VALUES ('3', '沈阳', '上海', '6', '世博园', '233');
INSERT INTO `tourism_line` VALUES ('4', '沈阳', '南京', '7', '南京博物院', '666');
INSERT INTO `tourism_line` VALUES ('5', '沈阳', '甘肃', '4', '莫高窟', '233');
INSERT INTO `tourism_line` VALUES ('6', '沈阳', '深圳', '9', '世界之窗', '666');
INSERT INTO `tourism_line` VALUES (