2021-10-23 21:13:27 索煒達(dá)電子 974
項(xiàng)目編號(hào):B385
文件大?。?0M
操作系統(tǒng):Windows10旗艦版
開發(fā)工具:idea2021
開發(fā)語言:. java
簡要概述:
介紹
一個(gè)精簡的基于SSM框架開發(fā)的酒店后臺(tái)管理系統(tǒng); 其主要功能包括對(duì)住客,房間和會(huì)員信息管理,同時(shí)可以下載房間和會(huì)員信息的數(shù)據(jù); 前端實(shí)現(xiàn)采用了layui-Qadmin模板;整體簡約大氣,使用方便快捷,歡迎各大佬下載使用,或二次開發(fā),如有不妥的地方還望請(qǐng)各大佬多提意見。
安裝教程
直接導(dǎo)入IDE工具,配置tomcat服務(wù)器和mysql數(shù)據(jù)庫,運(yùn)行即可
使用說明
運(yùn)行登陸
左欄操作相應(yīng)功能
運(yùn)行界面
目錄│文件列表:
├ 管理系統(tǒng)
│ │ hotel.sql
│ │ pom.xml
│ └ src
│ └ main
│ ├ java
│ │ └ com
│ │ └ hotel
│ │ ├ controller
│ │ │ │ AdminController.java
│ │ │ │ ExcelController.java
│ │ │ │ GuestsController.java
│ │ │ │ HomeController.java
│ │ │ │ JumpController.java
│ │ │ └ VipController.java
│ │ ├ dao
│ │ │ │ AdminMapper.java
│ │ │ │ AdminMapper.xml
│ │ │ │ GuestsMapper.java
│ │ │ │ GuestsMapper.xml
│ │ │ │ HomeMapper.java
│ │ │ │ HomeMapper.xml
│ │ │ │ VipMapper.java
│ │ │ └ VipMapper.xml
│ │ ├ pojo
│ │ │ │ Admin.java
│ │ │ │ Guests.java
│ │ │ │ Home.java
│ │ │ └ Vip.java
│ │ └ service
│ │ │ AdminService.java
│ │ │ AdminServiceImpl.java
│ │ │ GuestsService.java
│ │ │ GuestsServiceImpl.java
│ │ │ HomeService.java
│ │ │ HomeServiceImpl.java
│ │ │ VipService.java
│ │ └ VipServiceImpl.java
│ ├ resources
│ │ │ log4j.properties
│ │ ├ mybatis
│ │ │ └ SqlMapConfig.xml
│ │ ├ properties
│ │ │ └ jdbc.properties
│ │ └ spring
│ │ │ applicationContext-dao.xml
│ │ │ applicationContext-service.xml
│ │ │ applicationContext-trans.xml
│ │ └ springmvc.xml
│ └ webapp
│ │ login.jsp
│ ├ static
│ │ ├ admin
│ │ │ ├ css
│ │ │ │ │ login.css
│ │ │ │ └ style.css
│ │ │ ├ img
│ │ │ │ │ bj.png
│ │ │ │ └ tubiao.png
│ │ │ └ js
│ │ │ │ config.js
│ │ │ └ script.js
│ │ └ common
│ │ │ clipboard.min.js
│ │ │ jquery-3.3.1.min.js
│ │ │ vue.min.js
│ │ ├ image
│ │ │ │ head.jpg
│ │ │ └ tubiao.png
│ │ ├ layui
│ │ │ │ layui.all.js
│ │ │ │ layui.js
│ │ │ ├ css
│ │ │ │ │ layui.css
│ │ │ │ │ layui.mobile.css
│ │ │ │ └ modules
│ │ │ │ │ code.css
│ │ │ │ ├ laydate
│ │ │ │ │ └ default
│ │ │ │ │ └ laydate.css
│ │ │ │ └ layer
│ │ │ │ └ default
│ │ │ │ │ icon-ext.png
│ │ │ │ │ icon.png
│ │ │ │ │ layer.css
│ │ │ │ │ loading-0.gif
│ │ │ │ │ loading-1.gif
│ │ │ │ └ loading-2.gif
│ │ │ ├ font
│ │ │ │ │ iconfont.eot
│ │ │ │ │ iconfont.svg
│ │ │ │ │ iconfont.ttf
│ │ │ │ └ iconfont.woff
│ │ │ ├ images
│ │ │ │ └ face
│ │ │ │ │ 0.gif
│ │ │ │ │ 1.gif
│ │ │ │ │ 10.gif
│ │ │ │ │ 11.gif
│ │ │ │ │ 12.gif
│ │ │ │ │ 13.gif
│ │ │ │ │ 14.gif
│ │ │ │ │ 15.gif
│ │ │ │ │ 16.gif
│ │ │ │ │ 17.gif
│ │ │ │ │ 18.gif
│ │ │ │ │ 19.gif
│ │ │ │ │ 2.gif
│ │ │ │ │ 20.gif
│ │ │ │ │ 21.gif
│ │ │ │ │ 22.gif
│ │ │ │ │ 23.gif
│ │ │ │ │ 24.gif
│ │ │ │ │ 25.gif
│ │ │ │ │ 26.gif
│ │ │ │ │ 27.gif
│ │ │ │ │ 28.gif
│ │ │ │ │ 29.gif
│ │ │ │ │ 3.gif
│ │ │ │ │ 30.gif
│ │ │ │ │ 31.gif
│ │ │ │ │ 32.gif
│ │ │ │ │ 33.gif
│ │ │ │ │ 34.gif
│ │ │ │ │ 35.gif
│ │ │ │ │ 36.gif
│ │ │ │ │ 37.gif
│ │ │ │ │ 38.gif
│ │ │ │ │ 39.gif
│ │ │ │ │ 4.gif
│ │ │ │ │ 40.gif
│ │ │ │ │ 41.gif
│ │ │ │ │ 42.gif
│ │ │ │ │ 43.gif
│ │ │ │ │ 44.gif
│ │ │ │ │ 45.gif
│ │ │ │ │ 46.gif
│ │ │ │ │ 47.gif
│ │ │ │ │ 48.gif
│ │ │ │ │ 49.gif
│ │ │ │ │ 5.gif
│ │ │ │ │ 50.gif
│ │ │ │ │ 51.gif
│ │ │ │ │ 52.gif
│ │ │ │ │ 53.gif
│ │ │ │ │ 54.gif
│ │ │ │ │ 55.gif
│ │ │ │ │ 56.gif
│ │ │ │ │ 57.gif
│ │ │ │ │ 58.gif
│ │ │ │ │ 59.gif
│ │ │ │ │ 6.gif
│ │ │ │ │ 60.gif
│ │ │ │ │ 61.gif
│ │ │ │ │ 62.gif
│ │ │ │ │ 63.gif
│ │ │ │ │ 64.gif
│ │ │ │ │ 65.gif
│ │ │ │ │ 66.gif
│ │ │ │ │ 67.gif
│ │ │ │ │ 68.gif
│ │ │ │ │ 69.gif
│ │ │ │ │ 7.gif
│ │ │ │ │ 70.gif
│ │ │ │ │ 71.gif
│ │ │ │ │ 8.gif
│ │ │ │ └ 9.gif
│ │ │ └ lay
│ │ │ └ modules
│ │ │ │ carousel.js
│ │ │ │ code.js
│ │ │ │ colorpicker.js
│ │ │ │ element.js
│ │ │ │ flow.js
│ │ │ │ form.js
│ │ │ │ jquery.js
│ │ │ │ laydate.js
│ │ │ │ layedit.js
│ │ │ │ layer.js
│ │ │ │ laypage.js
│ │ │ │ laytpl.js
│ │ │ │ mobile.js
│ │ │ │ rate.js
│ │ │ │ slider.js
│ │ │ │ table.js
│ │ │ │ tree.js
│ │ │ │ upload.js
│ │ │ └ util.js
│ │ ├ ueditor
│ │ │ │ index.html
│ │ │ │ ueditor.all.js
│ │ │ │ ueditor.all.min.js
│ │ │ │ ueditor.config.js
│ │ │ │ ueditor.parse.js
│ │ │ │ ueditor.parse.min.js
│ │ │ ├ dialogs
│ │ │ │ │ internal.js
│ │ │ │ ├ anchor
│ │ │ │ │ └ anchor.html
│ │ │ │ ├ attachment
│ │ │ │ │ │ attachment.css
│ │ │ │ │ │ attachment.html
│ │ │ │ │ │ attachment.js
│ │ │ │ │ ├ fileTypeImages
│ │ │ │ │ │ │ icon_chm.gif
│ │ │ │ │ │ │ icon_default.png
│ │ │ │ │ │ │ icon_doc.gif
│ │ │ │ │ │ │ icon_exe.gif
│ │ │ │ │ │ │ icon_jpg.gif
│ │ │ │ │ │ │ icon_mp3.gif
│ │ │ │ │ │ │ icon_mv.gif
│ │ │ │ │ │ │ icon_pdf.gif
│ │ │ │ │ │ │ icon_ppt.gif
│ │ │ │ │ │ │ icon_psd.gif
│ │ │ │ │ │ │ icon_rar.gif
│ │ │ │ │ │ │ icon_txt.gif
│ │ │ │ │ │ └ icon_xls.gif
│ │ │ │ │ └ images
│ │ │ │ │ │ alignicon.gif
│ │ │ │ │ │ alignicon.png
│ │ │ │ │ │ bg.png
│ │ │ │ │ │ file-icons.gif
│ │ │ │ │ │ file-icons.png
│ │ │ │ │ │ icons.gif
│ │ │ │ │ │ icons.png
│ │ │ │ │ │ image.png
│ │ │ │ │ │ progress.png
│ │ │ │ │ │ success.gif
│ │ │ │ │ └ success.png
│ │ │ │ ├ background
│ │ │ │ │ │ background.css
│ │ │ │ │ │ background.html
│ │ │ │ │ │ background.js
│ │ │ │ ├ gmap
└ 運(yùn)行截圖
│ 房間列表.png
│ 添加住客.png
│ 登錄頁.png
└ 管理頁.png