├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── README.md ├── jiudianmanage.sql ├── mvnw ├── mvnw.cmd ├── pom.xml ├── src └── main │ ├── java │ └── com │ │ └── jiudian │ │ └── manage │ │ ├── ManageApplication.java │ │ ├── config │ │ └── CustomMVCConfiguration.java │ │ ├── controller │ │ ├── ConfigController.java │ │ ├── FileController.java │ │ ├── OrderController.java │ │ ├── RoomController.java │ │ └── UserController.java │ │ ├── mapper │ │ ├── ConfigMapper.java │ │ ├── OrderMapper.java │ │ ├── RoomMapper.java │ │ └── UserMapper.java │ │ ├── model │ │ ├── Config.java │ │ ├── Order.java │ │ ├── Room.java │ │ └── User.java │ │ ├── service │ │ ├── ConfigService.java │ │ ├── OrderService.java │ │ ├── RoomService.java │ │ ├── UserService.java │ │ └── impl │ │ │ ├── ConfigServiceImpl.java │ │ │ ├── OrderServiceImpl.java │ │ │ ├── RoomServiceImpl.java │ │ │ └── UserServiceImpl.java │ │ └── until │ │ ├── FileUtil.java │ │ ├── ImageCode.java │ │ ├── State.java │ │ ├── StateSignal.java │ │ ├── TimeUtil.java │ │ └── UUIDUtil.java │ └── resources │ ├── application.yml │ ├── generator │ └── generatorConfig.xml │ ├── mappers │ ├── ConfigMapper.xml │ ├── OrderMapper.xml │ ├── RoomMapper.xml │ └── UserMapper.xml │ └── static │ ├── File │ ├── 054ba262-4c7a-4c2f-bdf4-68d3e8cca171u=3841743209,952064471&fm=26&gp=0.jpg │ ├── 1db68d09-f557-4f19-800f-cff25ad3dfbdu=1504788190,2342400802&fm=26&gp=0.jpg │ ├── 1e99832f-ce8d-4b62-8724-de70a5f4723eu=1504788190,2342400802&fm=26&gp=0.jpg │ ├── 20bf33c3-a13f-4ea0-952f-49f7bb4ac76fu=524993387,1745136762&fm=26&gp=0.jpg │ ├── 63a6d7e9-4c93-46b6-b770-0ab66896364e大纲.png │ ├── 6b9fe4b7-86b0-469b-8423-72c6b918be63jhl12312312.jpg │ ├── 7cd229ee-893f-4c6a-a313-10d2e2930d2bu=3841743209,952064471&fm=26&gp=0.jpg │ ├── 7d8572a5-6f9e-4395-8b49-637ef7629cf1u=535355938,184562147&fm=26&gp=0.jpg │ ├── 84a84883-e3fa-4644-ab2e-cc18dfac4cacjhl12312312.jpg │ ├── 85417c74-f81e-4a23-98ad-3e007064b4fb课表.png │ ├── 9bf36b60-c8a9-42d0-9f61-bb381a3af5e5u=3841743209,952064471&fm=26&gp=0.jpg │ ├── b428a18d-187b-47d3-8d33-0f51a1e8302du=535355938,184562147&fm=26&gp=0.jpg │ ├── e4d5876c-ce66-4b0f-ab15-45e70816770ajhl12312312.jpg │ └── e9a7297a-7556-4080-8a0b-f9ea41e28608Screenshot_2018-10-13-16-40-44-014_com.tencent.mo.png │ ├── css │ ├── bootstrap.min.css │ ├── footer.css │ ├── index.css │ ├── myCenter.css │ └── pages.css │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ ├── img │ ├── login-sprite.png │ └── pexels-photo-545049.jpg │ ├── index.html │ ├── js │ ├── ad_manage.js │ ├── ad_order.js │ ├── ad_salary.js │ ├── all_infor.js │ ├── bootstrap-datepicker.js │ ├── bootstrap-datepicker.zh-CN.min.js │ ├── bootstrap.min.js │ ├── cleaner_room.js │ ├── index.js │ ├── jquery-form.js │ ├── jquery.min.js │ ├── manage_room.js │ ├── manage_staff.js │ ├── myCenter.js │ ├── staff_cleaner.js │ ├── staff_order.js │ └── staff_room.js │ └── pages │ ├── ad_manage.html │ ├── ad_order.html │ ├── ad_salary.html │ ├── all_infor.html │ ├── cleaner_room.html │ ├── manage_room.html │ ├── manage_staff.html │ ├── myCenter.html │ ├── staff_cleaner.html │ ├── staff_order.html │ └── staff_room.html ├── 酒店管理系统.docx └── 酒店管理系统.pptx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/README.md -------------------------------------------------------------------------------- /jiudianmanage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/jiudianmanage.sql -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/ManageApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/ManageApplication.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/config/CustomMVCConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/config/CustomMVCConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/controller/ConfigController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/controller/ConfigController.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/controller/FileController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/controller/FileController.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/controller/OrderController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/controller/OrderController.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/controller/RoomController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/controller/RoomController.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/controller/UserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/controller/UserController.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/mapper/ConfigMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/mapper/ConfigMapper.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/mapper/OrderMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/mapper/OrderMapper.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/mapper/RoomMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/mapper/RoomMapper.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/mapper/UserMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/mapper/UserMapper.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/model/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/model/Config.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/model/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/model/Order.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/model/Room.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/model/Room.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/model/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/model/User.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/service/ConfigService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/service/ConfigService.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/service/OrderService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/service/OrderService.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/service/RoomService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/service/RoomService.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/service/UserService.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/service/impl/ConfigServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/service/impl/ConfigServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/service/impl/OrderServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/service/impl/OrderServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/service/impl/RoomServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/service/impl/RoomServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/service/impl/UserServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/service/impl/UserServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/until/FileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/until/FileUtil.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/until/ImageCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/until/ImageCode.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/until/State.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/until/State.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/until/StateSignal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/until/StateSignal.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/until/TimeUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/until/TimeUtil.java -------------------------------------------------------------------------------- /src/main/java/com/jiudian/manage/until/UUIDUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/java/com/jiudian/manage/until/UUIDUtil.java -------------------------------------------------------------------------------- /src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/application.yml -------------------------------------------------------------------------------- /src/main/resources/generator/generatorConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/generator/generatorConfig.xml -------------------------------------------------------------------------------- /src/main/resources/mappers/ConfigMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/mappers/ConfigMapper.xml -------------------------------------------------------------------------------- /src/main/resources/mappers/OrderMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/mappers/OrderMapper.xml -------------------------------------------------------------------------------- /src/main/resources/mappers/RoomMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/mappers/RoomMapper.xml -------------------------------------------------------------------------------- /src/main/resources/mappers/UserMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/mappers/UserMapper.xml -------------------------------------------------------------------------------- /src/main/resources/static/File/054ba262-4c7a-4c2f-bdf4-68d3e8cca171u=3841743209,952064471&fm=26&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/File/054ba262-4c7a-4c2f-bdf4-68d3e8cca171u=3841743209,952064471&fm=26&gp=0.jpg -------------------------------------------------------------------------------- /src/main/resources/static/File/1db68d09-f557-4f19-800f-cff25ad3dfbdu=1504788190,2342400802&fm=26&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/File/1db68d09-f557-4f19-800f-cff25ad3dfbdu=1504788190,2342400802&fm=26&gp=0.jpg -------------------------------------------------------------------------------- /src/main/resources/static/File/1e99832f-ce8d-4b62-8724-de70a5f4723eu=1504788190,2342400802&fm=26&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/File/1e99832f-ce8d-4b62-8724-de70a5f4723eu=1504788190,2342400802&fm=26&gp=0.jpg -------------------------------------------------------------------------------- /src/main/resources/static/File/20bf33c3-a13f-4ea0-952f-49f7bb4ac76fu=524993387,1745136762&fm=26&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/File/20bf33c3-a13f-4ea0-952f-49f7bb4ac76fu=524993387,1745136762&fm=26&gp=0.jpg -------------------------------------------------------------------------------- /src/main/resources/static/File/63a6d7e9-4c93-46b6-b770-0ab66896364e大纲.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/File/63a6d7e9-4c93-46b6-b770-0ab66896364e大纲.png -------------------------------------------------------------------------------- /src/main/resources/static/File/6b9fe4b7-86b0-469b-8423-72c6b918be63jhl12312312.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/File/6b9fe4b7-86b0-469b-8423-72c6b918be63jhl12312312.jpg -------------------------------------------------------------------------------- /src/main/resources/static/File/7cd229ee-893f-4c6a-a313-10d2e2930d2bu=3841743209,952064471&fm=26&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/File/7cd229ee-893f-4c6a-a313-10d2e2930d2bu=3841743209,952064471&fm=26&gp=0.jpg -------------------------------------------------------------------------------- /src/main/resources/static/File/7d8572a5-6f9e-4395-8b49-637ef7629cf1u=535355938,184562147&fm=26&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/File/7d8572a5-6f9e-4395-8b49-637ef7629cf1u=535355938,184562147&fm=26&gp=0.jpg -------------------------------------------------------------------------------- /src/main/resources/static/File/84a84883-e3fa-4644-ab2e-cc18dfac4cacjhl12312312.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/File/84a84883-e3fa-4644-ab2e-cc18dfac4cacjhl12312312.jpg -------------------------------------------------------------------------------- /src/main/resources/static/File/85417c74-f81e-4a23-98ad-3e007064b4fb课表.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/File/85417c74-f81e-4a23-98ad-3e007064b4fb课表.png -------------------------------------------------------------------------------- /src/main/resources/static/File/9bf36b60-c8a9-42d0-9f61-bb381a3af5e5u=3841743209,952064471&fm=26&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/File/9bf36b60-c8a9-42d0-9f61-bb381a3af5e5u=3841743209,952064471&fm=26&gp=0.jpg -------------------------------------------------------------------------------- /src/main/resources/static/File/b428a18d-187b-47d3-8d33-0f51a1e8302du=535355938,184562147&fm=26&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/File/b428a18d-187b-47d3-8d33-0f51a1e8302du=535355938,184562147&fm=26&gp=0.jpg -------------------------------------------------------------------------------- /src/main/resources/static/File/e4d5876c-ce66-4b0f-ab15-45e70816770ajhl12312312.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/File/e4d5876c-ce66-4b0f-ab15-45e70816770ajhl12312312.jpg -------------------------------------------------------------------------------- /src/main/resources/static/File/e9a7297a-7556-4080-8a0b-f9ea41e28608Screenshot_2018-10-13-16-40-44-014_com.tencent.mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/File/e9a7297a-7556-4080-8a0b-f9ea41e28608Screenshot_2018-10-13-16-40-44-014_com.tencent.mo.png -------------------------------------------------------------------------------- /src/main/resources/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/resources/static/css/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/css/footer.css -------------------------------------------------------------------------------- /src/main/resources/static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/css/index.css -------------------------------------------------------------------------------- /src/main/resources/static/css/myCenter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/css/myCenter.css -------------------------------------------------------------------------------- /src/main/resources/static/css/pages.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/css/pages.css -------------------------------------------------------------------------------- /src/main/resources/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/resources/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/main/resources/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/resources/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/resources/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/img/login-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/img/login-sprite.png -------------------------------------------------------------------------------- /src/main/resources/static/img/pexels-photo-545049.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/img/pexels-photo-545049.jpg -------------------------------------------------------------------------------- /src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/index.html -------------------------------------------------------------------------------- /src/main/resources/static/js/ad_manage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/js/ad_manage.js -------------------------------------------------------------------------------- /src/main/resources/static/js/ad_order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/js/ad_order.js -------------------------------------------------------------------------------- /src/main/resources/static/js/ad_salary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/js/ad_salary.js -------------------------------------------------------------------------------- /src/main/resources/static/js/all_infor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/js/all_infor.js -------------------------------------------------------------------------------- /src/main/resources/static/js/bootstrap-datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/js/bootstrap-datepicker.js -------------------------------------------------------------------------------- /src/main/resources/static/js/bootstrap-datepicker.zh-CN.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/js/bootstrap-datepicker.zh-CN.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/cleaner_room.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/js/cleaner_room.js -------------------------------------------------------------------------------- /src/main/resources/static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/js/index.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/js/jquery-form.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/js/jquery.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/manage_room.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/js/manage_room.js -------------------------------------------------------------------------------- /src/main/resources/static/js/manage_staff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/js/manage_staff.js -------------------------------------------------------------------------------- /src/main/resources/static/js/myCenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/js/myCenter.js -------------------------------------------------------------------------------- /src/main/resources/static/js/staff_cleaner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/js/staff_cleaner.js -------------------------------------------------------------------------------- /src/main/resources/static/js/staff_order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/js/staff_order.js -------------------------------------------------------------------------------- /src/main/resources/static/js/staff_room.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/js/staff_room.js -------------------------------------------------------------------------------- /src/main/resources/static/pages/ad_manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/pages/ad_manage.html -------------------------------------------------------------------------------- /src/main/resources/static/pages/ad_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/pages/ad_order.html -------------------------------------------------------------------------------- /src/main/resources/static/pages/ad_salary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/pages/ad_salary.html -------------------------------------------------------------------------------- /src/main/resources/static/pages/all_infor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/pages/all_infor.html -------------------------------------------------------------------------------- /src/main/resources/static/pages/cleaner_room.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/pages/cleaner_room.html -------------------------------------------------------------------------------- /src/main/resources/static/pages/manage_room.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/pages/manage_room.html -------------------------------------------------------------------------------- /src/main/resources/static/pages/manage_staff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/pages/manage_staff.html -------------------------------------------------------------------------------- /src/main/resources/static/pages/myCenter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/pages/myCenter.html -------------------------------------------------------------------------------- /src/main/resources/static/pages/staff_cleaner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/pages/staff_cleaner.html -------------------------------------------------------------------------------- /src/main/resources/static/pages/staff_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/pages/staff_order.html -------------------------------------------------------------------------------- /src/main/resources/static/pages/staff_room.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/src/main/resources/static/pages/staff_room.html -------------------------------------------------------------------------------- /酒店管理系统.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/酒店管理系统.docx -------------------------------------------------------------------------------- /酒店管理系统.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsanhuo/HotelManagementSystem/HEAD/酒店管理系统.pptx --------------------------------------------------------------------------------