├── .classpath ├── .gitignore ├── .project ├── .settings ├── .jsdtscope ├── org.eclipse.buildship.core.prefs ├── org.eclipse.jdt.core.prefs ├── org.eclipse.wst.common.component ├── org.eclipse.wst.common.project.facet.core.xml ├── org.eclipse.wst.jsdt.ui.superType.container └── org.eclipse.wst.jsdt.ui.superType.name ├── Hotel check-in system.jpg ├── HotelCheck-inSystem.sql ├── WebContent ├── META-INF │ └── MANIFEST.MF ├── WEB-INF │ └── web.xml ├── css │ ├── checkin.css │ ├── fee.css │ ├── goods.css │ ├── index.css │ ├── main.css │ ├── room.css │ ├── staff.css │ ├── user.css │ └── usertype.css ├── index.jsp ├── javascript │ ├── goods.js │ ├── main.js │ ├── room.js │ ├── staff.js │ └── user.js └── jsp │ ├── checkin.jsp │ ├── fee.jsp │ ├── goods.jsp │ ├── main.jsp │ ├── room.jsp │ ├── staff.jsp │ ├── user.jsp │ └── usertype.jsp ├── bin ├── default │ ├── jdbc.properties │ ├── log4j.properties │ ├── logback.xml │ ├── mybatis-config.xml │ ├── spring-dao.xml │ ├── spring-service.xml │ └── spring-web.xml ├── main │ ├── Library.class │ ├── com │ │ └── lzf │ │ │ ├── dao │ │ │ ├── IDaoCheckIn.class │ │ │ ├── IDaoFee.class │ │ │ ├── IDaoGoods.class │ │ │ ├── IDaoIndex.class │ │ │ ├── IDaoRoom.class │ │ │ ├── IDaoUserType.class │ │ │ └── mapper │ │ │ │ ├── DaoCheckIn.xml │ │ │ │ ├── DaoFee.xml │ │ │ │ ├── DaoGoods.xml │ │ │ │ ├── DaoIndex.xml │ │ │ │ ├── DaoRoom.xml │ │ │ │ └── DaoUserType.xml │ │ │ ├── entity │ │ │ ├── Fee.class │ │ │ ├── Goods.class │ │ │ ├── Room.class │ │ │ ├── User.class │ │ │ └── UserType.class │ │ │ ├── service │ │ │ ├── IServiceCheckIn.class │ │ │ ├── IServiceFee.class │ │ │ ├── IServiceGoods.class │ │ │ ├── IServiceIndex.class │ │ │ ├── IServiceRoom.class │ │ │ ├── IServiceUserType.class │ │ │ └── impl │ │ │ │ ├── ServiceCheckIn.class │ │ │ │ ├── ServiceFee.class │ │ │ │ ├── ServiceGoods.class │ │ │ │ ├── ServiceIndex.class │ │ │ │ ├── ServiceRoom.class │ │ │ │ └── ServiceUserType.class │ │ │ ├── util │ │ │ ├── AipOpticalCharacterRecognition.class │ │ │ └── Test.class │ │ │ └── web │ │ │ ├── ControlCheckIn.class │ │ │ ├── ControlFee.class │ │ │ ├── ControlGoods.class │ │ │ ├── ControlIndex.class │ │ │ ├── ControlRoom.class │ │ │ ├── ControlUserType.class │ │ │ └── mobile │ │ │ ├── ControlMobileGoods.class │ │ │ ├── ControlUser.class │ │ │ ├── ControlUserRoom.class │ │ │ └── DtoPackaging.class │ ├── jdbc.properties │ ├── log4j.properties │ ├── logback.xml │ ├── mybatis-config.xml │ ├── spring-dao.xml │ ├── spring-service.xml │ └── spring-web.xml └── test │ └── LibraryTest.class ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── logs └── ssm.log ├── settings.gradle ├── src ├── main │ ├── java │ │ ├── Library.java │ │ └── com │ │ │ └── lzf │ │ │ ├── dao │ │ │ ├── IDaoCheckIn.java │ │ │ ├── IDaoFee.java │ │ │ ├── IDaoGoods.java │ │ │ ├── IDaoIndex.java │ │ │ ├── IDaoRoom.java │ │ │ ├── IDaoUserType.java │ │ │ └── mapper │ │ │ │ ├── DaoCheckIn.xml │ │ │ │ ├── DaoFee.xml │ │ │ │ ├── DaoGoods.xml │ │ │ │ ├── DaoIndex.xml │ │ │ │ ├── DaoRoom.xml │ │ │ │ └── DaoUserType.xml │ │ │ ├── entity │ │ │ ├── Fee.java │ │ │ ├── Goods.java │ │ │ ├── Room.java │ │ │ ├── User.java │ │ │ └── UserType.java │ │ │ ├── service │ │ │ ├── IServiceCheckIn.java │ │ │ ├── IServiceFee.java │ │ │ ├── IServiceGoods.java │ │ │ ├── IServiceIndex.java │ │ │ ├── IServiceRoom.java │ │ │ ├── IServiceUserType.java │ │ │ └── impl │ │ │ │ ├── ServiceCheckIn.java │ │ │ │ ├── ServiceFee.java │ │ │ │ ├── ServiceGoods.java │ │ │ │ ├── ServiceIndex.java │ │ │ │ ├── ServiceRoom.java │ │ │ │ └── ServiceUserType.java │ │ │ ├── util │ │ │ ├── AipOpticalCharacterRecognition.java │ │ │ └── Test.java │ │ │ └── web │ │ │ ├── ControlCheckIn.java │ │ │ ├── ControlFee.java │ │ │ ├── ControlGoods.java │ │ │ ├── ControlIndex.java │ │ │ ├── ControlRoom.java │ │ │ ├── ControlUserType.java │ │ │ └── mobile │ │ │ ├── ControlMobileGoods.java │ │ │ ├── ControlUser.java │ │ │ ├── ControlUserRoom.java │ │ │ └── DtoPackaging.java │ └── resources │ │ ├── jdbc.properties │ │ ├── log4j.properties │ │ ├── logback.xml │ │ ├── mybatis-config.xml │ │ ├── spring-dao.xml │ │ ├── spring-service.xml │ │ └── spring-web.xml └── test │ └── java │ └── LibraryTest.java └── 备注 /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.gradle/ 2 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/.project -------------------------------------------------------------------------------- /.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/.settings/.jsdtscope -------------------------------------------------------------------------------- /.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/.settings/org.eclipse.wst.common.project.facet.core.xml -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Hotel check-in system.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/Hotel check-in system.jpg -------------------------------------------------------------------------------- /HotelCheck-inSystem.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/HotelCheck-inSystem.sql -------------------------------------------------------------------------------- /WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/WEB-INF/web.xml -------------------------------------------------------------------------------- /WebContent/css/checkin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/css/checkin.css -------------------------------------------------------------------------------- /WebContent/css/fee.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/css/fee.css -------------------------------------------------------------------------------- /WebContent/css/goods.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/css/goods.css -------------------------------------------------------------------------------- /WebContent/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/css/index.css -------------------------------------------------------------------------------- /WebContent/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/css/main.css -------------------------------------------------------------------------------- /WebContent/css/room.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/css/room.css -------------------------------------------------------------------------------- /WebContent/css/staff.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/css/staff.css -------------------------------------------------------------------------------- /WebContent/css/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/css/user.css -------------------------------------------------------------------------------- /WebContent/css/usertype.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/css/usertype.css -------------------------------------------------------------------------------- /WebContent/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/index.jsp -------------------------------------------------------------------------------- /WebContent/javascript/goods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/javascript/goods.js -------------------------------------------------------------------------------- /WebContent/javascript/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/javascript/main.js -------------------------------------------------------------------------------- /WebContent/javascript/room.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/javascript/room.js -------------------------------------------------------------------------------- /WebContent/javascript/staff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/javascript/staff.js -------------------------------------------------------------------------------- /WebContent/javascript/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/javascript/user.js -------------------------------------------------------------------------------- /WebContent/jsp/checkin.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/jsp/checkin.jsp -------------------------------------------------------------------------------- /WebContent/jsp/fee.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/jsp/fee.jsp -------------------------------------------------------------------------------- /WebContent/jsp/goods.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/jsp/goods.jsp -------------------------------------------------------------------------------- /WebContent/jsp/main.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/jsp/main.jsp -------------------------------------------------------------------------------- /WebContent/jsp/room.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/jsp/room.jsp -------------------------------------------------------------------------------- /WebContent/jsp/staff.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/jsp/staff.jsp -------------------------------------------------------------------------------- /WebContent/jsp/user.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/jsp/user.jsp -------------------------------------------------------------------------------- /WebContent/jsp/usertype.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/WebContent/jsp/usertype.jsp -------------------------------------------------------------------------------- /bin/default/jdbc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/default/jdbc.properties -------------------------------------------------------------------------------- /bin/default/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/default/log4j.properties -------------------------------------------------------------------------------- /bin/default/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/default/logback.xml -------------------------------------------------------------------------------- /bin/default/mybatis-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/default/mybatis-config.xml -------------------------------------------------------------------------------- /bin/default/spring-dao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/default/spring-dao.xml -------------------------------------------------------------------------------- /bin/default/spring-service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/default/spring-service.xml -------------------------------------------------------------------------------- /bin/default/spring-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/default/spring-web.xml -------------------------------------------------------------------------------- /bin/main/Library.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/Library.class -------------------------------------------------------------------------------- /bin/main/com/lzf/dao/IDaoCheckIn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/dao/IDaoCheckIn.class -------------------------------------------------------------------------------- /bin/main/com/lzf/dao/IDaoFee.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/dao/IDaoFee.class -------------------------------------------------------------------------------- /bin/main/com/lzf/dao/IDaoGoods.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/dao/IDaoGoods.class -------------------------------------------------------------------------------- /bin/main/com/lzf/dao/IDaoIndex.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/dao/IDaoIndex.class -------------------------------------------------------------------------------- /bin/main/com/lzf/dao/IDaoRoom.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/dao/IDaoRoom.class -------------------------------------------------------------------------------- /bin/main/com/lzf/dao/IDaoUserType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/dao/IDaoUserType.class -------------------------------------------------------------------------------- /bin/main/com/lzf/dao/mapper/DaoCheckIn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/dao/mapper/DaoCheckIn.xml -------------------------------------------------------------------------------- /bin/main/com/lzf/dao/mapper/DaoFee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/dao/mapper/DaoFee.xml -------------------------------------------------------------------------------- /bin/main/com/lzf/dao/mapper/DaoGoods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/dao/mapper/DaoGoods.xml -------------------------------------------------------------------------------- /bin/main/com/lzf/dao/mapper/DaoIndex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/dao/mapper/DaoIndex.xml -------------------------------------------------------------------------------- /bin/main/com/lzf/dao/mapper/DaoRoom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/dao/mapper/DaoRoom.xml -------------------------------------------------------------------------------- /bin/main/com/lzf/dao/mapper/DaoUserType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/dao/mapper/DaoUserType.xml -------------------------------------------------------------------------------- /bin/main/com/lzf/entity/Fee.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/entity/Fee.class -------------------------------------------------------------------------------- /bin/main/com/lzf/entity/Goods.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/entity/Goods.class -------------------------------------------------------------------------------- /bin/main/com/lzf/entity/Room.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/entity/Room.class -------------------------------------------------------------------------------- /bin/main/com/lzf/entity/User.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/entity/User.class -------------------------------------------------------------------------------- /bin/main/com/lzf/entity/UserType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/entity/UserType.class -------------------------------------------------------------------------------- /bin/main/com/lzf/service/IServiceCheckIn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/service/IServiceCheckIn.class -------------------------------------------------------------------------------- /bin/main/com/lzf/service/IServiceFee.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/service/IServiceFee.class -------------------------------------------------------------------------------- /bin/main/com/lzf/service/IServiceGoods.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/service/IServiceGoods.class -------------------------------------------------------------------------------- /bin/main/com/lzf/service/IServiceIndex.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/service/IServiceIndex.class -------------------------------------------------------------------------------- /bin/main/com/lzf/service/IServiceRoom.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/service/IServiceRoom.class -------------------------------------------------------------------------------- /bin/main/com/lzf/service/IServiceUserType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/service/IServiceUserType.class -------------------------------------------------------------------------------- /bin/main/com/lzf/service/impl/ServiceCheckIn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/service/impl/ServiceCheckIn.class -------------------------------------------------------------------------------- /bin/main/com/lzf/service/impl/ServiceFee.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/service/impl/ServiceFee.class -------------------------------------------------------------------------------- /bin/main/com/lzf/service/impl/ServiceGoods.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/service/impl/ServiceGoods.class -------------------------------------------------------------------------------- /bin/main/com/lzf/service/impl/ServiceIndex.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/service/impl/ServiceIndex.class -------------------------------------------------------------------------------- /bin/main/com/lzf/service/impl/ServiceRoom.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/service/impl/ServiceRoom.class -------------------------------------------------------------------------------- /bin/main/com/lzf/service/impl/ServiceUserType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/service/impl/ServiceUserType.class -------------------------------------------------------------------------------- /bin/main/com/lzf/util/AipOpticalCharacterRecognition.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/util/AipOpticalCharacterRecognition.class -------------------------------------------------------------------------------- /bin/main/com/lzf/util/Test.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/util/Test.class -------------------------------------------------------------------------------- /bin/main/com/lzf/web/ControlCheckIn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/web/ControlCheckIn.class -------------------------------------------------------------------------------- /bin/main/com/lzf/web/ControlFee.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/web/ControlFee.class -------------------------------------------------------------------------------- /bin/main/com/lzf/web/ControlGoods.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/web/ControlGoods.class -------------------------------------------------------------------------------- /bin/main/com/lzf/web/ControlIndex.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/web/ControlIndex.class -------------------------------------------------------------------------------- /bin/main/com/lzf/web/ControlRoom.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/web/ControlRoom.class -------------------------------------------------------------------------------- /bin/main/com/lzf/web/ControlUserType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/web/ControlUserType.class -------------------------------------------------------------------------------- /bin/main/com/lzf/web/mobile/ControlMobileGoods.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/web/mobile/ControlMobileGoods.class -------------------------------------------------------------------------------- /bin/main/com/lzf/web/mobile/ControlUser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/web/mobile/ControlUser.class -------------------------------------------------------------------------------- /bin/main/com/lzf/web/mobile/ControlUserRoom.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/web/mobile/ControlUserRoom.class -------------------------------------------------------------------------------- /bin/main/com/lzf/web/mobile/DtoPackaging.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/com/lzf/web/mobile/DtoPackaging.class -------------------------------------------------------------------------------- /bin/main/jdbc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/jdbc.properties -------------------------------------------------------------------------------- /bin/main/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/log4j.properties -------------------------------------------------------------------------------- /bin/main/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/logback.xml -------------------------------------------------------------------------------- /bin/main/mybatis-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/mybatis-config.xml -------------------------------------------------------------------------------- /bin/main/spring-dao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/spring-dao.xml -------------------------------------------------------------------------------- /bin/main/spring-service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/spring-service.xml -------------------------------------------------------------------------------- /bin/main/spring-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/main/spring-web.xml -------------------------------------------------------------------------------- /bin/test/LibraryTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/bin/test/LibraryTest.class -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/gradlew.bat -------------------------------------------------------------------------------- /logs/ssm.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/logs/ssm.log -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/java/Library.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/Library.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/dao/IDaoCheckIn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/dao/IDaoCheckIn.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/dao/IDaoFee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/dao/IDaoFee.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/dao/IDaoGoods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/dao/IDaoGoods.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/dao/IDaoIndex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/dao/IDaoIndex.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/dao/IDaoRoom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/dao/IDaoRoom.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/dao/IDaoUserType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/dao/IDaoUserType.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/dao/mapper/DaoCheckIn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/dao/mapper/DaoCheckIn.xml -------------------------------------------------------------------------------- /src/main/java/com/lzf/dao/mapper/DaoFee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/dao/mapper/DaoFee.xml -------------------------------------------------------------------------------- /src/main/java/com/lzf/dao/mapper/DaoGoods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/dao/mapper/DaoGoods.xml -------------------------------------------------------------------------------- /src/main/java/com/lzf/dao/mapper/DaoIndex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/dao/mapper/DaoIndex.xml -------------------------------------------------------------------------------- /src/main/java/com/lzf/dao/mapper/DaoRoom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/dao/mapper/DaoRoom.xml -------------------------------------------------------------------------------- /src/main/java/com/lzf/dao/mapper/DaoUserType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/dao/mapper/DaoUserType.xml -------------------------------------------------------------------------------- /src/main/java/com/lzf/entity/Fee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/entity/Fee.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/entity/Goods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/entity/Goods.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/entity/Room.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/entity/Room.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/entity/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/entity/User.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/entity/UserType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/entity/UserType.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/service/IServiceCheckIn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/service/IServiceCheckIn.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/service/IServiceFee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/service/IServiceFee.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/service/IServiceGoods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/service/IServiceGoods.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/service/IServiceIndex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/service/IServiceIndex.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/service/IServiceRoom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/service/IServiceRoom.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/service/IServiceUserType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/service/IServiceUserType.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/service/impl/ServiceCheckIn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/service/impl/ServiceCheckIn.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/service/impl/ServiceFee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/service/impl/ServiceFee.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/service/impl/ServiceGoods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/service/impl/ServiceGoods.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/service/impl/ServiceIndex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/service/impl/ServiceIndex.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/service/impl/ServiceRoom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/service/impl/ServiceRoom.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/service/impl/ServiceUserType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/service/impl/ServiceUserType.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/util/AipOpticalCharacterRecognition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/util/AipOpticalCharacterRecognition.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/util/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/util/Test.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/web/ControlCheckIn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/web/ControlCheckIn.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/web/ControlFee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/web/ControlFee.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/web/ControlGoods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/web/ControlGoods.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/web/ControlIndex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/web/ControlIndex.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/web/ControlRoom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/web/ControlRoom.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/web/ControlUserType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/web/ControlUserType.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/web/mobile/ControlMobileGoods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/web/mobile/ControlMobileGoods.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/web/mobile/ControlUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/web/mobile/ControlUser.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/web/mobile/ControlUserRoom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/web/mobile/ControlUserRoom.java -------------------------------------------------------------------------------- /src/main/java/com/lzf/web/mobile/DtoPackaging.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/java/com/lzf/web/mobile/DtoPackaging.java -------------------------------------------------------------------------------- /src/main/resources/jdbc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/resources/jdbc.properties -------------------------------------------------------------------------------- /src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/resources/logback.xml -------------------------------------------------------------------------------- /src/main/resources/mybatis-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/resources/mybatis-config.xml -------------------------------------------------------------------------------- /src/main/resources/spring-dao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/resources/spring-dao.xml -------------------------------------------------------------------------------- /src/main/resources/spring-service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/resources/spring-service.xml -------------------------------------------------------------------------------- /src/main/resources/spring-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/main/resources/spring-web.xml -------------------------------------------------------------------------------- /src/test/java/LibraryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/src/test/java/LibraryTest.java -------------------------------------------------------------------------------- /备注: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MJCoderMJCoder/HotelCheck-inSystem-Server-/HEAD/备注 --------------------------------------------------------------------------------