liu 1 年間 前
コミット
781074b2ac

ファイルの差分が大きいため隠しています
+ 4 - 3
src/main/java/common/utils/RSAUtils.java


BIN
target/classes/com/studenthotel/annotation/DESRespondSecret.class


BIN
target/classes/com/studenthotel/aop/DESResponseSecretAspect.class


BIN
target/classes/common/utils/EncryptUtil.class


BIN
target/classes/common/utils/RSAUtils.class


+ 209 - 0
target/classes/sql/studenthotel_houtai.sql

@@ -0,0 +1,209 @@
+/*
+ Navicat Premium Data Transfer
+
+ Source Server         : 172.16.20.72宿舍大屏
+ Source Server Type    : MySQL
+ Source Server Version : 50737
+ Source Host           : 172.16.20.72:3306
+ Source Schema         : studenthotel_houtai
+
+ Target Server Type    : MySQL
+ Target Server Version : 50737
+ File Encoding         : 65001
+
+ Date: 04/02/2024 17:49:58
+*/
+
+SET NAMES utf8mb4;
+SET FOREIGN_KEY_CHECKS = 0;
+
+-- ----------------------------
+-- Table structure for build_total_people
+-- ----------------------------
+DROP TABLE IF EXISTS `build_total_people`;
+CREATE TABLE `build_total_people`  (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `build` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '楼栋',
+  `headcount` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '总人数',
+  PRIMARY KEY (`id`) USING BTREE
+) ENGINE = InnoDB AUTO_INCREMENT = 16 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
+
+-- ----------------------------
+-- Table structure for cold_water
+-- ----------------------------
+DROP TABLE IF EXISTS `cold_water`;
+CREATE TABLE `cold_water`  (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `build` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '楼栋',
+  `dom` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房间号',
+  `data_time` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '时间',
+  `totalMoney` double(8, 2) NULL DEFAULT NULL COMMENT '总金额',
+  `totalPower` double(8, 2) NULL DEFAULT NULL COMMENT '总能耗',
+  `create_time` datetime(0) NOT NULL COMMENT '创建时间',
+  `update_time` datetime(0) NOT NULL COMMENT '更新时间',
+  `create_user` bigint(20) NOT NULL COMMENT '创建人员',
+  `update_user` bigint(20) NOT NULL COMMENT '更新人员',
+  `deleted` bigint(20) NOT NULL COMMENT '逻辑删除标记',
+  PRIMARY KEY (`id`) USING BTREE
+) ENGINE = InnoDB AUTO_INCREMENT = 22409 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
+
+-- ----------------------------
+-- Table structure for contrast_failure
+-- ----------------------------
+DROP TABLE IF EXISTS `contrast_failure`;
+CREATE TABLE `contrast_failure`  (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `capture_img` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '现场抓拍照片',
+  `cmp_time` datetime(0) NULL DEFAULT NULL COMMENT '比对时间',
+  `device_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '设备名称',
+  `personnel_type` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '人员类型',
+  `type` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '0VIP 1陌生人 2高抛 3离岗',
+  `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '姓名',
+  `create_time` datetime(0) NOT NULL COMMENT '创建时间',
+  `update_time` datetime(0) NOT NULL COMMENT '更新时间',
+  `create_user` bigint(20) NOT NULL COMMENT '创建人员',
+  `update_user` bigint(20) NOT NULL COMMENT '更新人员',
+  `deleted` bigint(20) NOT NULL COMMENT '逻辑删除标记',
+  PRIMARY KEY (`id`) USING BTREE
+) ENGINE = InnoDB AUTO_INCREMENT = 988 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
+
+-- ----------------------------
+-- Table structure for dorm
+-- ----------------------------
+DROP TABLE IF EXISTS `dorm`;
+CREATE TABLE `dorm`  (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `school` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '校区',
+  `build` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '楼栋',
+  `floors` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '层数',
+  `dom` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房间号',
+  `pointid` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '表记编码',
+  `create_time` datetime(0) NOT NULL COMMENT '创建时间',
+  `update_time` datetime(0) NOT NULL COMMENT '更新时间',
+  `create_user` bigint(20) NOT NULL COMMENT '创建人员',
+  `update_user` bigint(20) NOT NULL COMMENT '更新人员',
+  `deleted` bigint(20) NOT NULL COMMENT '逻辑删除标记',
+  PRIMARY KEY (`id`) USING BTREE
+) ENGINE = InnoDB AUTO_INCREMENT = 2417 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
+
+-- ----------------------------
+-- Table structure for electric
+-- ----------------------------
+DROP TABLE IF EXISTS `electric`;
+CREATE TABLE `electric`  (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `build` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '楼栋',
+  `dom` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房间号',
+  `date_time` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '时间',
+  `totalMoney` double(8, 2) NULL DEFAULT NULL COMMENT '总金额',
+  `totalPower` double(8, 2) NULL DEFAULT NULL COMMENT '总能耗',
+  `create_time` datetime(0) NOT NULL COMMENT '创建时间',
+  `update_time` datetime(0) NOT NULL COMMENT '更新时间',
+  `create_user` bigint(20) NOT NULL COMMENT '创建人员',
+  `update_user` bigint(20) NOT NULL COMMENT '更新人员',
+  `deleted` bigint(20) NOT NULL COMMENT '逻辑删除标记',
+  PRIMARY KEY (`id`) USING BTREE
+) ENGINE = InnoDB AUTO_INCREMENT = 22765 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
+
+-- ----------------------------
+-- Table structure for face_recognition
+-- ----------------------------
+DROP TABLE IF EXISTS `face_recognition`;
+CREATE TABLE `face_recognition`  (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `passing_time` datetime(0) NULL DEFAULT NULL COMMENT '时间',
+  `channel_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '通道名称',
+  `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '姓名',
+  `picture_path` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '抓拍图片路径',
+  `school_user_id` bigint(20) NULL DEFAULT NULL COMMENT 'school_user表的id',
+  `create_time` datetime(0) NOT NULL COMMENT '创建时间',
+  `update_time` datetime(0) NOT NULL COMMENT '更新时间',
+  `create_user` bigint(20) NOT NULL COMMENT '创建人员',
+  `update_user` bigint(20) NOT NULL COMMENT '更新人员',
+  `deleted` bigint(20) NOT NULL COMMENT '逻辑删除标记',
+  PRIMARY KEY (`id`) USING BTREE
+) ENGINE = InnoDB AUTO_INCREMENT = 177640 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
+
+-- ----------------------------
+-- Table structure for school_user
+-- ----------------------------
+DROP TABLE IF EXISTS `school_user`;
+CREATE TABLE `school_user`  (
+  `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
+  `head_image` varchar(300) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '头像',
+  `card_number` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '电子卡号',
+  `student_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '学号',
+  `id_card` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '身份证号',
+  `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '名字',
+  `gender` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '性别(0为未知,1为男,2为女)',
+  `grade` varbinary(255) NULL DEFAULT NULL COMMENT '年级',
+  `identity_type` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '身份类型,0为其他,1为学生,4为教职工,5为校友',
+  `birthday` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '生日',
+  `address` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '地址',
+  `province` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '省',
+  `city` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '市',
+  `origin_place` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '生源地',
+  `graduated_school` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '毕业学校',
+  `college` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '学院',
+  `profession` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '专业',
+  `clazz` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '班级',
+  `nation` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '名族',
+  `build` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '栋',
+  `floors` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '层',
+  `dorm_number` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '宿舍号',
+  `student_nts` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '准考证号',
+  `distance` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '距离',
+  PRIMARY KEY (`id`) USING BTREE,
+  INDEX `id_card`(`id_card`) USING BTREE
+) ENGINE = InnoDB AUTO_INCREMENT = 27003 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
+
+-- ----------------------------
+-- Table structure for school_user_copy
+-- ----------------------------
+DROP TABLE IF EXISTS `school_user_copy`;
+CREATE TABLE `school_user_copy`  (
+  `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
+  `head_image` varchar(300) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '头像',
+  `card_number` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '电子卡号',
+  `student_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '学号',
+  `id_card` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '身份证号',
+  `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '名字',
+  `gender` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '性别(0为未知,1为男,2为女)',
+  `grade` varbinary(255) NULL DEFAULT NULL COMMENT '年级',
+  `identity_type` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '身份类型,1为其他,2为学生,3为教职工,4为校友',
+  `birthday` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '生日',
+  `address` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '地址',
+  `province` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '省',
+  `city` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '市',
+  `origin_place` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '生源地',
+  `graduated_school` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '毕业学校',
+  `college` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '学院',
+  `profession` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '专业',
+  `clazz` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '班级',
+  `nation` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '名族',
+  `build` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '栋',
+  `floors` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '层',
+  `dorm_number` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '宿舍号',
+  `student_nts` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '准考证号',
+  `distance` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '距离',
+  PRIMARY KEY (`id`) USING BTREE,
+  INDEX `id_card`(`id_card`) USING BTREE
+) ENGINE = InnoDB AUTO_INCREMENT = 6730 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
+
+-- ----------------------------
+-- Table structure for user
+-- ----------------------------
+DROP TABLE IF EXISTS `user`;
+CREATE TABLE `user`  (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `user` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户',
+  `pass_word` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '密码',
+  `create_time` datetime(0) NOT NULL COMMENT '创建时间',
+  `update_time` datetime(0) NOT NULL COMMENT '更新时间',
+  `create_user` bigint(20) NOT NULL COMMENT '创建人员',
+  `update_user` bigint(20) NOT NULL COMMENT '更新人员',
+  `deleted` bigint(20) NOT NULL COMMENT '逻辑删除标记',
+  PRIMARY KEY (`id`) USING BTREE
+) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
+
+SET FOREIGN_KEY_CHECKS = 1;

+ 0 - 3
target/maven-archiver/pom.properties

@@ -1,3 +0,0 @@
-artifactId=studenthotel_houtai
-groupId=com.chuanghai
-version=0.0.1-SNAPSHOT

+ 0 - 96
target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst

@@ -1,96 +0,0 @@
-common\result\ResponseStatusEnum.class
-com\studenthotel\services\impl\DormServiceImpl.class
-com\studenthotel\api\FaceRecognitionApi.class
-com\studenthotel\controller\DormController.class
-com\studenthotel\controller\ContrastFailureController.class
-com\studenthotel\services\impl\UserServiceImpl.class
-common\dto\TotalEnergyDto.class
-com\studenthotel\api\ContrastFailureApi.class
-com\studenthotel\yushi\SubscriptionConfig$1.class
-common\result\Code.class
-com\studenthotel\services\impl\DormServiceImpl$2.class
-com\studenthotel\mapper\ContrastFailureMapper.class
-com\studenthotel\annotation\UserLoginCheck.class
-common\utils\smsUtil.class
-common\dto\FaceRecognitionDto.class
-com\studenthotel\core\CORSConfiguration.class
-com\studenthotel\config\MyBatisPlusConfig.class
-com\studenthotel\yushi\utils\SubscribePersonCondition.class
-com\studenthotel\controller\CircumferenceController.class
-com\studenthotel\yushi\utils\SubscriptionVo.class
-com\studenthotel\model\pojo\User.class
-com\studenthotel\StudenthotelHoutai.class
-com\studenthotel\annotation\ControllerIsShow.class
-com\studenthotel\services\impl\DormServiceImpl$3.class
-common\exception\EmsException.class
-com\studenthotel\model\pojo\SchoolUser.class
-common\utils\JWTUtil.class
-com\studenthotel\services\impl\ElectricServiceImpl.class
-com\studenthotel\config\MySecurity.class
-common\exception\EmsExceptionHandler.class
-com\studenthotel\model\pojo\Dorm.class
-com\studenthotel\services\ContrastFailureService.class
-com\studenthotel\services\DormService.class
-com\studenthotel\controller\FaceRecognitionController.class
-com\studenthotel\core\JwtlnterceptorConfig.class
-com\studenthotel\mapper\ColdWaterMapper.class
-common\dto\ClassesCountedDto.class
-com\studenthotel\api\ColdWaterApi.class
-com\studenthotel\yushi\utils\LibID.class
-com\studenthotel\handler\MyMetaObjectHandler.class
-com\studenthotel\services\SchoolUserService.class
-common\dto\DormitoryBuildingCountedDto.class
-common\utils\FileUtil.class
-com\studenthotel\controller\SchoolUserController.class
-com\studenthotel\services\UserService.class
-common\utils\HMAC.class
-com\studenthotel\services\impl\DormServiceImpl$1.class
-com\studenthotel\services\impl\SchoolUserServiceImpl.class
-com\studenthotel\model\pojo\BuildTotalPeople.class
-com\studenthotel\controller\ElectricController.class
-com\studenthotel\services\impl\ContrastFailureServiceImpl.class
-com\studenthotel\services\ElectricService.class
-com\studenthotel\yushi\BaseClass.class
-com\studenthotel\handle\NonStaticResourceHttpRequestHandler.class
-com\studenthotel\mapper\DormMapper.class
-com\studenthotel\controller\ColdWaterController.class
-com\studenthotel\model\vo\UserVo.class
-com\studenthotel\services\impl\FaceRecognitionServiceImpl.class
-com\studenthotel\services\impl\ColdWaterServiceImpl.class
-com\studenthotel\controller\UserController.class
-common\dto\BuildTotalPeopleDto.class
-com\studenthotel\core\CORSConfiguration$1.class
-com\studenthotel\mapper\ElectricMapper.class
-com\studenthotel\aop\LoginCheckAspect.class
-com\studenthotel\api\BuildTotalPeopleApi.class
-com\studenthotel\AutoCode.class
-com\studenthotel\core\SwaggerConfiguration.class
-common\utils\EncryptionUtil.class
-com\studenthotel\config\RestTemplastConfig.class
-common\dto\LoginDto.class
-com\studenthotel\model\pojo\Electric.class
-com\studenthotel\model\pojo\ColdWater.class
-com\studenthotel\mapper\UserMapper.class
-com\studenthotel\services\impl\BuildTotalPeopleServiceImpl.class
-com\studenthotel\controller\BuildTotalPeopleController.class
-com\studenthotel\model\utils\CommonResult.class
-com\studenthotel\services\FaceRecognitionService.class
-com\studenthotel\mapper\SchoolUserMapper.class
-com\studenthotel\core\JwtAuthenticationInterceptor.class
-com\studenthotel\api\UserApi.class
-com\studenthotel\mapper\FaceRecognitionMapper.class
-common\exception\MyCustomException.class
-common\utils\RSAUtils.class
-common\dto\PersonnelAccessDto.class
-common\utils\AesUtils.class
-common\utils\Base64Utils.class
-com\studenthotel\services\BuildTotalPeopleService.class
-common\utils\ValidateCode.class
-com\studenthotel\annotation\PassToken.class
-com\studenthotel\mapper\BuildTotalPeopleMapper.class
-com\studenthotel\model\utils\BaseResult.class
-com\studenthotel\services\ColdWaterService.class
-common\utils\CommonUtil.class
-com\studenthotel\model\pojo\FaceRecognition.class
-com\studenthotel\yushi\SubscriptionConfig.class
-com\studenthotel\model\pojo\ContrastFailure.class

+ 0 - 91
target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst

@@ -1,91 +0,0 @@
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\mapper\ElectricMapper.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\controller\FaceRecognitionController.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\services\impl\UserServiceImpl.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\model\pojo\BuildTotalPeople.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\services\DormService.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\yushi\utils\SubscriptionVo.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\model\utils\CommonResult.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\StudenthotelHoutai.java
-E:\company\studenthotel_houtai\src\main\java\common\exception\EmsExceptionHandler.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\services\impl\ElectricServiceImpl.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\services\impl\ContrastFailureServiceImpl.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\annotation\PassToken.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\annotation\ControllerIsShow.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\services\impl\BuildTotalPeopleServiceImpl.java
-E:\company\studenthotel_houtai\src\main\java\common\utils\Base64Utils.java
-E:\company\studenthotel_houtai\src\main\java\common\utils\JWTUtil.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\mapper\UserMapper.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\annotation\UserLoginCheck.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\core\SwaggerConfiguration.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\yushi\utils\LibID.java
-E:\company\studenthotel_houtai\src\main\java\common\utils\CommonUtil.java
-E:\company\studenthotel_houtai\src\main\java\common\utils\EncryptionUtil.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\mapper\ContrastFailureMapper.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\services\ContrastFailureService.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\model\pojo\FaceRecognition.java
-E:\company\studenthotel_houtai\src\main\java\common\exception\EmsException.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\api\ContrastFailureApi.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\model\pojo\ColdWater.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\config\MySecurity.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\api\UserApi.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\config\MyBatisPlusConfig.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\config\RestTemplastConfig.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\mapper\FaceRecognitionMapper.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\model\pojo\SchoolUser.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\aop\LoginCheckAspect.java
-E:\company\studenthotel_houtai\src\main\java\common\dto\ClassesCountedDto.java
-E:\company\studenthotel_houtai\src\main\java\common\dto\DormitoryBuildingCountedDto.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\controller\ElectricController.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\model\vo\UserVo.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\controller\BuildTotalPeopleController.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\controller\DormController.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\api\FaceRecognitionApi.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\services\ElectricService.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\controller\UserController.java
-E:\company\studenthotel_houtai\src\main\java\common\result\Code.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\services\impl\SchoolUserServiceImpl.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\controller\ContrastFailureController.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\model\pojo\Dorm.java
-E:\company\studenthotel_houtai\src\main\java\common\dto\BuildTotalPeopleDto.java
-E:\company\studenthotel_houtai\src\main\java\common\dto\TotalEnergyDto.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\yushi\BaseClass.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\mapper\BuildTotalPeopleMapper.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\model\pojo\ContrastFailure.java
-E:\company\studenthotel_houtai\src\main\java\common\result\ResponseStatusEnum.java
-E:\company\studenthotel_houtai\src\main\java\common\utils\AesUtils.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\core\CORSConfiguration.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\controller\CircumferenceController.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\api\ColdWaterApi.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\mapper\DormMapper.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\core\JwtAuthenticationInterceptor.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\services\BuildTotalPeopleService.java
-E:\company\studenthotel_houtai\src\main\java\common\utils\RSAUtils.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\mapper\SchoolUserMapper.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\model\pojo\User.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\model\utils\BaseResult.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\services\impl\FaceRecognitionServiceImpl.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\handle\NonStaticResourceHttpRequestHandler.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\services\ColdWaterService.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\controller\ColdWaterController.java
-E:\company\studenthotel_houtai\src\main\java\common\utils\FileUtil.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\controller\SchoolUserController.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\yushi\SubscriptionConfig.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\mapper\ColdWaterMapper.java
-E:\company\studenthotel_houtai\src\main\java\common\dto\FaceRecognitionDto.java
-E:\company\studenthotel_houtai\src\main\java\common\dto\LoginDto.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\core\JwtlnterceptorConfig.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\services\UserService.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\yushi\utils\SubscribePersonCondition.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\model\pojo\Electric.java
-E:\company\studenthotel_houtai\src\main\java\common\exception\MyCustomException.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\api\BuildTotalPeopleApi.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\services\FaceRecognitionService.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\services\impl\ColdWaterServiceImpl.java
-E:\company\studenthotel_houtai\src\main\java\common\utils\smsUtil.java
-E:\company\studenthotel_houtai\src\main\java\common\utils\HMAC.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\services\impl\DormServiceImpl.java
-E:\company\studenthotel_houtai\src\main\java\common\dto\PersonnelAccessDto.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\handler\MyMetaObjectHandler.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\AutoCode.java
-E:\company\studenthotel_houtai\src\main\java\com\studenthotel\services\SchoolUserService.java
-E:\company\studenthotel_houtai\src\main\java\common\utils\ValidateCode.java

+ 0 - 2
target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst

@@ -1,2 +0,0 @@
-com\video\MybatisPlusApplicationTests.class
-com\video\WrapperTest.class

+ 0 - 2
target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst

@@ -1,2 +0,0 @@
-E:\company\studenthotel_houtai\src\test\java\com\video\MybatisPlusApplicationTests.java
-E:\company\studenthotel_houtai\src\test\java\com\video\WrapperTest.java

BIN
target/studenthotel_houtai-0.0.1-SNAPSHOT.jar


BIN
target/studenthotel_houtai-0.0.1-SNAPSHOT.jar.original


BIN
target/test-classes/com/video/MybatisPlusApplicationTests.class


BIN
target/test-classes/com/video/WrapperTest.class