├── Src ├── HotelManagesys.pro ├── HotelManagesys.pro.user ├── backupdatanasedialog.cpp ├── backupdatanasedialog.h ├── backupdatanasedialog.ui ├── checkcutomdialog.cpp ├── checkcutomdialog.h ├── checkcutomdialog.ui ├── checkoutdialog.cpp ├── checkoutdialog.h ├── checkoutdialog.ui ├── costomerregisterinfodialog.cpp ├── costomerregisterinfodialog.h ├── costomerregisterinfodialog.ui ├── customerwindget.cpp ├── customerwindget.h ├── customerwindget.ui ├── image.qrc ├── logblogdialog.cpp ├── logblogdialog.h ├── logblogdialog.ui ├── logindialog.cpp ├── logindialog.h ├── logindialog.ui ├── main.cpp ├── main.ico ├── main.rc ├── modiftroomprice.cpp ├── modiftroomprice.h ├── modiftroomprice.ui ├── modifypwddialog.cpp ├── modifypwddialog.h ├── modifypwddialog.ui ├── promanage.cpp ├── promanage.h ├── promanage.ui ├── registerdialog.cpp ├── registerdialog.h ├── registerdialog.ui ├── romminfo.cpp ├── romminfo.h ├── romminfo.ui ├── roompicdialog.cpp ├── roompicdialog.h ├── roompicdialog.ui ├── temple │ └── release │ │ ├── .qmake.stash │ │ ├── Makefile │ │ ├── Makefile.Debug │ │ ├── Makefile.Release │ │ ├── object_script.HotelManagesys.Debug │ │ └── object_script.HotelManagesys.Release ├── widget.cpp ├── widget.h └── widget.ui ├── app ├── Connection.h ├── frmmessagebox.cpp ├── frmmessagebox.h ├── frmmessagebox.ui ├── iconhelper.cpp ├── iconhelper.h ├── myapp.cpp ├── myapp.h ├── myhelper.cpp ├── myhelper.h ├── mysqlapi.cpp ├── mysqlapi.h ├── mythread.cpp └── mythread.h ├── doc └── hotel.sql ├── help └── help.CHM ├── image ├── Font Awesome Cheatsheet.png ├── add-line_horizontal.png ├── add-line_vertical.png ├── array_down.png ├── back.png ├── blue.css ├── checkbox_checked.png ├── checkbox_unchecked.png ├── database │ └── database.png ├── delete.png ├── error.png ├── excel.png ├── find.png ├── fontawesome-webfont.ttf ├── house │ ├── 1.jpg │ ├── 10.jpg │ ├── 11.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ └── 9.jpg ├── info.png ├── print.png ├── qt_zh_CN.qm ├── question.png ├── radio_normal.png ├── radio_selected.png ├── room │ ├── Deluxe Suite.jpg │ ├── back.jpg │ ├── double room.jpg │ └── single room.jpg ├── roomnum │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ └── layout.png ├── roomtype │ ├── double.png │ ├── luxury.png │ ├── president.png │ └── signal.png ├── select.png ├── sub-line_horizontal.png ├── sub-line_vertical.png └── update.png ├── readme.md └── screen └── home.png /Src/HotelManagesys.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/HotelManagesys.pro -------------------------------------------------------------------------------- /Src/HotelManagesys.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/HotelManagesys.pro.user -------------------------------------------------------------------------------- /Src/backupdatanasedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/backupdatanasedialog.cpp -------------------------------------------------------------------------------- /Src/backupdatanasedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/backupdatanasedialog.h -------------------------------------------------------------------------------- /Src/backupdatanasedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/backupdatanasedialog.ui -------------------------------------------------------------------------------- /Src/checkcutomdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/checkcutomdialog.cpp -------------------------------------------------------------------------------- /Src/checkcutomdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/checkcutomdialog.h -------------------------------------------------------------------------------- /Src/checkcutomdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/checkcutomdialog.ui -------------------------------------------------------------------------------- /Src/checkoutdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/checkoutdialog.cpp -------------------------------------------------------------------------------- /Src/checkoutdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/checkoutdialog.h -------------------------------------------------------------------------------- /Src/checkoutdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/checkoutdialog.ui -------------------------------------------------------------------------------- /Src/costomerregisterinfodialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/costomerregisterinfodialog.cpp -------------------------------------------------------------------------------- /Src/costomerregisterinfodialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/costomerregisterinfodialog.h -------------------------------------------------------------------------------- /Src/costomerregisterinfodialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/costomerregisterinfodialog.ui -------------------------------------------------------------------------------- /Src/customerwindget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/customerwindget.cpp -------------------------------------------------------------------------------- /Src/customerwindget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/customerwindget.h -------------------------------------------------------------------------------- /Src/customerwindget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/customerwindget.ui -------------------------------------------------------------------------------- /Src/image.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/image.qrc -------------------------------------------------------------------------------- /Src/logblogdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/logblogdialog.cpp -------------------------------------------------------------------------------- /Src/logblogdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/logblogdialog.h -------------------------------------------------------------------------------- /Src/logblogdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/logblogdialog.ui -------------------------------------------------------------------------------- /Src/logindialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/logindialog.cpp -------------------------------------------------------------------------------- /Src/logindialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/logindialog.h -------------------------------------------------------------------------------- /Src/logindialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/logindialog.ui -------------------------------------------------------------------------------- /Src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/main.cpp -------------------------------------------------------------------------------- /Src/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/main.ico -------------------------------------------------------------------------------- /Src/main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/main.rc -------------------------------------------------------------------------------- /Src/modiftroomprice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/modiftroomprice.cpp -------------------------------------------------------------------------------- /Src/modiftroomprice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/modiftroomprice.h -------------------------------------------------------------------------------- /Src/modiftroomprice.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/modiftroomprice.ui -------------------------------------------------------------------------------- /Src/modifypwddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/modifypwddialog.cpp -------------------------------------------------------------------------------- /Src/modifypwddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/modifypwddialog.h -------------------------------------------------------------------------------- /Src/modifypwddialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/modifypwddialog.ui -------------------------------------------------------------------------------- /Src/promanage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/promanage.cpp -------------------------------------------------------------------------------- /Src/promanage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/promanage.h -------------------------------------------------------------------------------- /Src/promanage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/promanage.ui -------------------------------------------------------------------------------- /Src/registerdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/registerdialog.cpp -------------------------------------------------------------------------------- /Src/registerdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/registerdialog.h -------------------------------------------------------------------------------- /Src/registerdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/registerdialog.ui -------------------------------------------------------------------------------- /Src/romminfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/romminfo.cpp -------------------------------------------------------------------------------- /Src/romminfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/romminfo.h -------------------------------------------------------------------------------- /Src/romminfo.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/romminfo.ui -------------------------------------------------------------------------------- /Src/roompicdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/roompicdialog.cpp -------------------------------------------------------------------------------- /Src/roompicdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/roompicdialog.h -------------------------------------------------------------------------------- /Src/roompicdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/roompicdialog.ui -------------------------------------------------------------------------------- /Src/temple/release/.qmake.stash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/temple/release/.qmake.stash -------------------------------------------------------------------------------- /Src/temple/release/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/temple/release/Makefile -------------------------------------------------------------------------------- /Src/temple/release/Makefile.Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/temple/release/Makefile.Debug -------------------------------------------------------------------------------- /Src/temple/release/Makefile.Release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/temple/release/Makefile.Release -------------------------------------------------------------------------------- /Src/temple/release/object_script.HotelManagesys.Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/temple/release/object_script.HotelManagesys.Debug -------------------------------------------------------------------------------- /Src/temple/release/object_script.HotelManagesys.Release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/temple/release/object_script.HotelManagesys.Release -------------------------------------------------------------------------------- /Src/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/widget.cpp -------------------------------------------------------------------------------- /Src/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/widget.h -------------------------------------------------------------------------------- /Src/widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/Src/widget.ui -------------------------------------------------------------------------------- /app/Connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/app/Connection.h -------------------------------------------------------------------------------- /app/frmmessagebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/app/frmmessagebox.cpp -------------------------------------------------------------------------------- /app/frmmessagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/app/frmmessagebox.h -------------------------------------------------------------------------------- /app/frmmessagebox.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/app/frmmessagebox.ui -------------------------------------------------------------------------------- /app/iconhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/app/iconhelper.cpp -------------------------------------------------------------------------------- /app/iconhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/app/iconhelper.h -------------------------------------------------------------------------------- /app/myapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/app/myapp.cpp -------------------------------------------------------------------------------- /app/myapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/app/myapp.h -------------------------------------------------------------------------------- /app/myhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/app/myhelper.cpp -------------------------------------------------------------------------------- /app/myhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/app/myhelper.h -------------------------------------------------------------------------------- /app/mysqlapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/app/mysqlapi.cpp -------------------------------------------------------------------------------- /app/mysqlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/app/mysqlapi.h -------------------------------------------------------------------------------- /app/mythread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/app/mythread.cpp -------------------------------------------------------------------------------- /app/mythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/app/mythread.h -------------------------------------------------------------------------------- /doc/hotel.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/doc/hotel.sql -------------------------------------------------------------------------------- /help/help.CHM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/help/help.CHM -------------------------------------------------------------------------------- /image/Font Awesome Cheatsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/Font Awesome Cheatsheet.png -------------------------------------------------------------------------------- /image/add-line_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/add-line_horizontal.png -------------------------------------------------------------------------------- /image/add-line_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/add-line_vertical.png -------------------------------------------------------------------------------- /image/array_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/array_down.png -------------------------------------------------------------------------------- /image/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/back.png -------------------------------------------------------------------------------- /image/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/blue.css -------------------------------------------------------------------------------- /image/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/checkbox_checked.png -------------------------------------------------------------------------------- /image/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/checkbox_unchecked.png -------------------------------------------------------------------------------- /image/database/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/database/database.png -------------------------------------------------------------------------------- /image/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/delete.png -------------------------------------------------------------------------------- /image/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/error.png -------------------------------------------------------------------------------- /image/excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/excel.png -------------------------------------------------------------------------------- /image/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/find.png -------------------------------------------------------------------------------- /image/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /image/house/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/house/1.jpg -------------------------------------------------------------------------------- /image/house/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/house/10.jpg -------------------------------------------------------------------------------- /image/house/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/house/11.jpg -------------------------------------------------------------------------------- /image/house/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/house/2.jpg -------------------------------------------------------------------------------- /image/house/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/house/3.jpg -------------------------------------------------------------------------------- /image/house/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/house/4.jpg -------------------------------------------------------------------------------- /image/house/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/house/5.jpg -------------------------------------------------------------------------------- /image/house/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/house/6.jpg -------------------------------------------------------------------------------- /image/house/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/house/7.jpg -------------------------------------------------------------------------------- /image/house/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/house/8.jpg -------------------------------------------------------------------------------- /image/house/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/house/9.jpg -------------------------------------------------------------------------------- /image/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/info.png -------------------------------------------------------------------------------- /image/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/print.png -------------------------------------------------------------------------------- /image/qt_zh_CN.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/qt_zh_CN.qm -------------------------------------------------------------------------------- /image/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/question.png -------------------------------------------------------------------------------- /image/radio_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/radio_normal.png -------------------------------------------------------------------------------- /image/radio_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/radio_selected.png -------------------------------------------------------------------------------- /image/room/Deluxe Suite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/room/Deluxe Suite.jpg -------------------------------------------------------------------------------- /image/room/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/room/back.jpg -------------------------------------------------------------------------------- /image/room/double room.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/room/double room.jpg -------------------------------------------------------------------------------- /image/room/single room.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/room/single room.jpg -------------------------------------------------------------------------------- /image/roomnum/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/roomnum/1.png -------------------------------------------------------------------------------- /image/roomnum/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/roomnum/2.png -------------------------------------------------------------------------------- /image/roomnum/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/roomnum/3.png -------------------------------------------------------------------------------- /image/roomnum/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/roomnum/4.png -------------------------------------------------------------------------------- /image/roomnum/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/roomnum/5.png -------------------------------------------------------------------------------- /image/roomnum/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/roomnum/6.png -------------------------------------------------------------------------------- /image/roomnum/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/roomnum/7.png -------------------------------------------------------------------------------- /image/roomnum/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/roomnum/8.png -------------------------------------------------------------------------------- /image/roomnum/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/roomnum/9.png -------------------------------------------------------------------------------- /image/roomnum/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/roomnum/layout.png -------------------------------------------------------------------------------- /image/roomtype/double.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/roomtype/double.png -------------------------------------------------------------------------------- /image/roomtype/luxury.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/roomtype/luxury.png -------------------------------------------------------------------------------- /image/roomtype/president.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/roomtype/president.png -------------------------------------------------------------------------------- /image/roomtype/signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/roomtype/signal.png -------------------------------------------------------------------------------- /image/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/select.png -------------------------------------------------------------------------------- /image/sub-line_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/sub-line_horizontal.png -------------------------------------------------------------------------------- /image/sub-line_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/sub-line_vertical.png -------------------------------------------------------------------------------- /image/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/image/update.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/readme.md -------------------------------------------------------------------------------- /screen/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/HotelManage/HEAD/screen/home.png --------------------------------------------------------------------------------