基于SSM酒店管理系统

Posted qq_1076315463

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基于SSM酒店管理系统相关的知识,希望对你有一定的参考价值。

介绍:
spring,springmvc,mybatis框架
(1) 酒店客房管理:包括客房类别,客房信息编辑,修改,删除,查询等。
(2) 客房预订管理:实现客户对客房的预定以及管理员的管理。
(3) 客户入住管理:包括入住信息登记,身份信息录入,换房,入住查询等
(4) 客户结账退房管理:实现客户退房结账功能。
(5) 各类信息查询:包括客房信息查询,预定查询,入住状态查询等。

(6) 统计查询功能:系统根据时间,客房类型等信息对入住情况和效益进行统计,根据需求是否生成统计报表。

截图:
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
数据库表:

CREATE TABLE t_liuyan (
liuyan_id int(11) NOT NULL AUTO_INCREMENT,
liuyan_title varchar(50) DEFAULT NULL,
liuyan_content text,
liuyan_date date DEFAULT NULL,
liuyan_user varchar(50) DEFAULT NULL,
PRIMARY KEY (liuyan_id)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COMMENT=‘留言’;


– Records of t_liuyan


INSERT INTO t_liuyan VALUES (‘4’, ‘健身街舞’, ‘

健身街舞是一种中低强度的有氧运动,通过一节课45分钟到一个小时,舞蹈中能调动所有运动细胞,消耗全身脂肪。

’, ‘2017-05-06’, ‘管理员’);
INSERT INTO t_liuyan VALUES (‘2’, ‘你好’, ‘

你好大连东软信息学院

’, ‘2017-04-06’, null);
INSERT INTO t_liuyan VALUES (‘3’, ‘减脂贴’, ‘

跑步至少30分钟,必须为有氧运动。不能快速,不利于减脂。

’, ‘2017-04-21’, null);
INSERT INTO t_liuyan VALUES (‘5’, ‘动感单车运动’, ‘

今天进行动感单车课程锻炼

’, ‘2017-05-11’, null);
INSERT INTO t_liuyan VALUES (‘6’, ‘网站很不错’, ‘

网站不错,值得学习

’, ‘2017-05-11’, null);
INSERT INTO t_liuyan VALUES (‘7’, ‘跳绳运动’, ‘

网站的跳绳产品不好

’, ‘2017-05-11’, null);
INSERT INTO t_liuyan VALUES (‘12’, ‘12’, ‘12’, null, ‘12’);
INSERT INTO t_liuyan VALUES (‘9’, ‘1212’, ‘1212’, null, ‘1212’);
INSERT INTO t_liuyan VALUES (‘13’, ‘环境卫生’, ‘不好’, null, ‘vip用户’);
INSERT INTO t_liuyan VALUES (‘11’, ‘特价房’, ‘12’, null, ‘管理员’);
INSERT INTO t_liuyan VALUES (‘14’, ‘aa’, ‘非常好’, null, ‘1212’);

– Table structure for t_room


DROP TABLE IF EXISTS t_room;
CREATE TABLE t_room (
id int(11) NOT NULL AUTO_INCREMENT COMMENT ‘id主键’,
room_id int(11) DEFAULT NULL COMMENT ‘房间类型’,
room_no varchar(255) DEFAULT NULL COMMENT ‘房间编号’,
status int(11) DEFAULT NULL COMMENT ‘是否入住 1是 0否’,
money double DEFAULT NULL,
PRIMARY KEY (id)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COMMENT=‘房间表’;


– Records of t_room


INSERT INTO t_room VALUES (‘2’, ‘3’, ‘302’, ‘0’, ‘500’);
INSERT INTO t_room VALUES (‘3’, ‘2’, ‘520’, ‘0’, ‘110’);
INSERT INTO t_room VALUES (‘4’, ‘7’, ‘101’, ‘0’, ‘600’);
INSERT INTO t_room VALUES (‘5’, ‘6’, ‘201’, ‘0’, ‘450’);
INSERT INTO t_room VALUES (‘6’, ‘5’, ‘202’, ‘0’, ‘100’);
INSERT INTO t_room VALUES (‘7’, ‘4’, ‘303’, ‘0’, ‘200’);
INSERT INTO t_room VALUES (‘8’, ‘3’, ‘505’, ‘0’, ‘500’);
INSERT INTO t_room VALUES (‘9’, ‘7’, ‘204’, ‘0’, ‘600’);
INSERT INTO t_room VALUES (‘10’, ‘6’, ‘305’, ‘0’, ‘450’);
INSERT INTO t_room VALUES (‘11’, ‘5’, ‘102’, ‘0’, ‘100’);
INSERT INTO t_room VALUES (‘12’, ‘6’, ‘306’, ‘0’, ‘600’);


– Table structure for t_room_book


DROP TABLE IF EXISTS t_room_book;
CREATE TABLE t_room_book (
id int(11) NOT NULL AUTO_INCREMENT,
user_id int(11) DEFAULT NULL,
add_time datetime DEFAULT NULL,
strat_time datetime DEFAULT NULL,
end_time datetime DEFAULT NULL,
room_id int(11) DEFAULT NULL,
money double DEFAULT NULL,
status int(11) DEFAULT NULL,
PRIMARY KEY (id)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8;

以上是关于基于SSM酒店管理系统的主要内容,如果未能解决你的问题,请参考以下文章

基于SSM实现酒店入住预定管理系统

基于SSM酒店管理系统

059基于SSM酒店管理系统(前后台)

基于SSM实现酒店管理系统

基于SSM框架的酒店管理系统的设计与实现(附带源码论文)

基于SSM框架的酒店管理系统的设计与实现(附带源码论文)