浏览代码

海盐本地半版本

yang 3 年之前
父节点
当前提交
36d9cbf6ef
共有 20 个文件被更改,包括 176 次插入135 次删除
  1. 3 1
      huimv-face/huimv-face.iml
  2. 18 0
      huimv-face/src/main/java/com/huimv/face/constant/ConstantParam.java
  3. 22 16
      huimv-face/src/main/java/com/huimv/face/controller/APIcontroller.java
  4. 0 5
      huimv-face/src/main/java/com/huimv/face/controller/Back.java
  5. 8 8
      huimv-face/src/main/java/com/huimv/face/controller/PeopleManagementController.java
  6. 1 0
      huimv-face/src/main/java/com/huimv/face/controller/SelectCameraController.java
  7. 31 15
      huimv-face/src/main/java/com/huimv/face/controller/StrangerController.java
  8. 1 1
      huimv-face/src/main/resources/application-prod.yml
  9. 2 1
      huimv-face/src/main/resources/application-test.yml
  10. 1 1
      huimv-face/target/classes/application-prod.yml
  11. 2 1
      huimv-face/target/classes/application-test.yml
  12. 二进制
      huimv-face/target/classes/com/huimv/face/constant/ConstantParam.class
  13. 二进制
      huimv-face/target/classes/com/huimv/face/controller/APIcontroller.class
  14. 二进制
      huimv-face/target/classes/com/huimv/face/controller/PeopleManagementController.class
  15. 二进制
      huimv-face/target/classes/com/huimv/face/controller/SelectCameraController.class
  16. 二进制
      huimv-face/target/classes/com/huimv/face/controller/StrangerController.class
  17. 二进制
      huimv-face/target/huimv-face-1.0-SNAPSHOT-jar-with-dependencies.jar
  18. 二进制
      huimv-face/target/huimv-face-1.0-SNAPSHOT.jar
  19. 二进制
      huimv-face/target/huimv-face-1.0-SNAPSHOT.jar.original
  20. 87 86
      huimv-face/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst

+ 3 - 1
huimv-face/huimv-face.iml

@@ -5,7 +5,9 @@
       <configuration>
         <setting name="validation-enabled" value="true" />
         <setting name="provider-name" value="Hibernate" />
-        <datasource-mapping />
+        <datasource-mapping>
+          <factory-entry name="entityManagerFactory" />
+        </datasource-mapping>
         <naming-strategy-map />
       </configuration>
     </facet>

+ 18 - 0
huimv-face/src/main/java/com/huimv/face/constant/ConstantParam.java

@@ -0,0 +1,18 @@
+package com.huimv.face.constant;
+
+import net.bytebuddy.implementation.bytecode.assign.TypeCasting;
+
+public class ConstantParam {
+
+
+    //端口
+    public static final  String IpAndPort = "http://36.26.62.70:8089";
+
+    //配置人员库--免得前端改动--在APIcontroller 用到这个参数  这儿确实不好弄人员库的选择问题,之前让前端写死-还是后端配置起来比较简单
+    public static final int GROUP_ID = 2;
+    //本服务中添加了两张表  1.选择相机表  2.确认表
+
+    //拿图片的IP+端口应该也通过后台来改的应该写一下--这会儿就算了吧
+
+
+}

+ 22 - 16
huimv-face/src/main/java/com/huimv/face/controller/APIcontroller.java

@@ -3,6 +3,7 @@ package com.huimv.face.controller;
 
 import com.alibaba.fastjson.JSONArray;
 import com.alibaba.fastjson.JSONObject;
+import com.huimv.face.constant.ConstantParam;
 import com.huimv.face.entity.SelectCamera;
 import com.huimv.face.entity.StrangerModels;
 import com.huimv.face.repo.CamerasRepository;
@@ -24,6 +25,8 @@ import javax.servlet.http.HttpServletRequest;
 import java.io.IOException;
 import java.util.*;
 
+import static com.huimv.face.constant.ConstantParam.GROUP_ID;
+
 
 @CrossOrigin
 @RestController
@@ -43,7 +46,7 @@ public class APIcontroller {
                           @RequestParam(name = "people_id", required = false) String peopleid,
                           @RequestParam(name = "task_id") int task_id,
                           @RequestParam(name = "date") String date) throws IOException {
-        String URL = "http://36.26.62.70:10081/api/flow/record?_t" + _t + "&task_id=" + task_id + "&date=" + date + "&people_id=" + peopleid;
+        String URL = ConstantParam.IpAndPort+ "/api/flow/record?_t" + _t + "&task_id=" + task_id + "&date=" + date + "&people_id=" + peopleid;
         HttpClient httpClient = new HttpClient(URL);
         httpClient.setHttps(false);
         httpClient.get();
@@ -53,11 +56,7 @@ public class APIcontroller {
         return jsonObject;
     }
 
-
     //查看所有已经确认的人的记录,带分页
-
-
-
     //升级成数据库查询。这个接口直接所有未确认的陌生人给前端就可以了,
     @RequestMapping("/unEnsure")
     public Result list127(HttpServletRequest request,
@@ -71,10 +70,6 @@ public class APIcontroller {
         return  new Result(1000,"查询成功",byImageIdis0);
     }
 
-
-
-
-
      /*
      * @param request
      * @param _t
@@ -93,7 +88,7 @@ public class APIcontroller {
                           @RequestParam(name = "page_count", required = false) String page_count,  //重复
                           @RequestParam(name = "task_id") int task_id,
                           @RequestParam(name = "date") String date) throws IOException {
-        String URL = "http://36.26.62.70:10081/api/flow/record/list?_t" + _t + "&task_id=" + task_id + "&date=" + date + "&start_page=" + start_page + "&page_count=" + page_count;
+        String URL = ConstantParam.IpAndPort+"/api/flow/record/list?_t" + _t + "&task_id=" + task_id + "&date=" + date + "&start_page=" + start_page + "&page_count=" + page_count;
         //发送请求
         HttpClient httpClient = new HttpClient(URL);
         httpClient.setHttps(false);
@@ -112,7 +107,7 @@ public class APIcontroller {
                          @RequestParam(name = "_t") String _t,
                          @RequestParam(name = "task_id") int task_id,
                          @RequestParam(name = "date") String date) throws IOException {
-        String URL03 = "http://36.26.62.70:10081/api/flow/statistic?_t" + _t + "&" + "task_id=" + task_id + "&" + "date=" + date;
+        String URL03 = ConstantParam.IpAndPort+"/api/flow/statistic?_t" + _t + "&" + "task_id=" + task_id + "&" + "date=" + date;
         HttpClient httpClient = new HttpClient(URL03);
         httpClient.setHttps(false);
         httpClient.get();
@@ -121,6 +116,7 @@ public class APIcontroller {
         System.out.println("/flow/statistic**请求成功");
         return jsonObject;
     }
+
     @RequestMapping("/alarm_records")
     public Object list13(HttpServletRequest request,
                          @RequestParam(name = "_t", required = false) String _t, //重复
@@ -134,9 +130,9 @@ public class APIcontroller {
 
     ) throws IOException {
         //换到海盐之后的路径
-        String URL01 = "http://36.26.62.70:10081/api/alarm_records?_t" + _t + "&" + "start_page=" + start_page + "&" + "page_count=" + page_count
+        String URL01 = ConstantParam.IpAndPort+"/api/alarm_records?_t" + _t + "&" + "start_page=" + start_page + "&" + "page_count=" + page_count
                 + "&" + "begin_time=" + begin_time + "&" + "end_time=" + end_time
-                + "&" + "group_id=" + group_id + "&" + "camera_id=" + camera_id
+                + "&" + "group_id=" +GROUP_ID+ "&" + "camera_id=" + camera_id
                 + "&" + "keyword=" + keyword;
         System.out.println(URL01);
         HttpClient httpClient = new HttpClient(URL01);
@@ -147,6 +143,8 @@ public class APIcontroller {
         System.out.println("获取警报记录");
         return jsonObject;
     }
+
+
     //陌生人通行记录
     //单个摄像头通行记录 过去一天,过去一周,过去一个月,活动版本 ,想办法修改成SQL操作
     @RequestMapping("/pass_records")
@@ -155,8 +153,7 @@ public class APIcontroller {
                              @RequestParam(name = "_t") String _t,
                              @RequestParam(name = "kind") int kind //1.在库   2.陌生人
     ) throws Exception {
-        //选中的摄像头在 select_cameras 表中,直接查找第一条
-
+        //选中的摄像头在 select_cameras 表中,直接查找第一条----12.01  砍掉  直接不要了
         SelectCamera selectCamera = selectCameraRepository.selectid1();
         JSONArray jsonArray = JSONObject.parseArray(selectCamera.getCamera());
         System.out.println("得到的数组为" + jsonArray);
@@ -172,8 +169,9 @@ public class APIcontroller {
                 int pagecount = 50000;
                 int startpage = 1;
                 //想办法制作成从数据库查询
-                String URL = "http://36.26.62.70:10081/api/pass_records?_t=" + _t + "&start_page=" + startpage + "&page_count=" + pagecount + "&camera_id=" + job;
+                String URL = ConstantParam.IpAndPort+"/api/pass_records?_t=" + _t + "&start_page=" + startpage + "&page_count=" + pagecount + "&camera_id=" + job;
                 //发送请求
+                System.out.println(URL);
                 HttpClient httpClient = new HttpClient(URL);
                 httpClient.setHttps(false);
                 httpClient.get();
@@ -256,3 +254,11 @@ public class APIcontroller {
     }
 }
 
+
+
+
+
+
+
+
+

+ 0 - 5
huimv-face/src/main/java/com/huimv/face/controller/Back.java

@@ -2,8 +2,6 @@ package com.huimv.face.controller;
 
 public class Back {
 
-
-
 /*
 
     @RequestMapping("/logensure")
@@ -128,7 +126,4 @@ public class Back {
         return jsonObject;
     }*/
 
-
-
-
 }

+ 8 - 8
huimv-face/src/main/java/com/huimv/face/controller/PeopleManagementController.java

@@ -2,6 +2,7 @@ package com.huimv.face.controller;
 
 
 import com.alibaba.fastjson.JSONObject;
+import com.huimv.face.constant.ConstantParam;
 import com.huimv.face.repo.GroupsRepository;
 import com.huimv.face.util.HttpClient;
 import com.huimv.face.util.Result;
@@ -27,7 +28,7 @@ public class PeopleManagementController {
 
 
     /**
-     * @param request
+     * @param request    修改或者添加人员    需要先删除再添加
      * @param name    参数格式: form data
      * @return 添加人员的接口
      * @throws Exception
@@ -40,14 +41,14 @@ public class PeopleManagementController {
                                    @RequestParam(name = "idcard") String  idcard,
                                     @RequestParam(name = "id") Integer id
     ) throws Exception {
-        String URL03 = "http://36.26.62.70:10081/api/fr/personnels/"+id;
+        String URL03 = ConstantParam.IpAndPort+"/api/fr/personnels/"+id;
         HttpClient httpClient = new HttpClient(URL03);
         httpClient.setHttps(false);
         String content = httpClient.doDelete(URL03);
         JSONObject jsonObject = JSONObject.parseObject(content);
         System.out.println("删除成功了"+jsonObject);
         System.out.println(name);
-        String URL = "http://36.26.62.70:10081/api/fr/personnels";
+        String URL = ConstantParam.IpAndPort+"/api/fr/personnels";
         System.out.println(URL);
         //发送请求
         HttpClient httpClient1 = new HttpClient(URL);
@@ -84,7 +85,7 @@ public class PeopleManagementController {
 if(id!=null){
 
     //执行删除
-    String URL03 = "http://36.26.62.70:10081/api/fr/personnels/"+id;
+    String URL03 = ConstantParam.IpAndPort+"/api/fr/personnels/"+id;
     HttpClient httpClient = new HttpClient(URL03);
     httpClient.setHttps(false);
     String content = httpClient.doDelete(URL03);
@@ -92,7 +93,7 @@ if(id!=null){
     System.out.println("删除成功了"+jsonObject);
     System.out.println(name);
 }
-        String URL = "http://36.26.62.70:10081/api/fr/personnels";
+        String URL = ConstantParam.IpAndPort+"/api/fr/personnels";
         System.out.println(URL);
         //发送请求
         HttpClient httpClient = new HttpClient(URL);
@@ -122,7 +123,7 @@ if(id!=null){
     ) throws Exception {
         System.out.println(name);
 
-        String URL = "http://36.26.62.70:10081/api/fr/groups";
+        String URL = ConstantParam.IpAndPort+"/api/fr/groups";
         System.out.println(URL);
         //发送请求
         HttpClient httpClient = new HttpClient(URL);
@@ -133,7 +134,6 @@ if(id!=null){
         JSONObject jsonObject = JSONObject.parseObject(content);
         System.out.println("添加底库");
         return new Result(10000, "添加成功", jsonObject);
-
     }
 
     /**
@@ -148,7 +148,7 @@ if(id!=null){
                                   @RequestParam(name = "mark",required = false) String mark
     ) throws Exception {
         System.out.println(name);
-        String URL = "http://36.26.62.70:10081/api/groups/"+id;
+        String URL = ConstantParam.IpAndPort+"/api/groups/"+id;
         //发送请求
         HttpClient httpClient = new HttpClient(URL);
         httpClient.setHttps(false);

+ 1 - 0
huimv-face/src/main/java/com/huimv/face/controller/SelectCameraController.java

@@ -19,6 +19,7 @@ import java.util.*;
 @RestController
 @RequestMapping("/api")
 @CrossOrigin
+//最开始是用来放相机列表的,现在直接砍掉,多了这个表会有问题
 public class SelectCameraController {
 
     @Autowired

+ 31 - 15
huimv-face/src/main/java/com/huimv/face/controller/StrangerController.java

@@ -15,8 +15,6 @@ import org.springframework.web.bind.annotation.RestController;
 import javax.servlet.http.HttpServletRequest;
 import java.util.*;
 
-
-
 @RestController
 @RequestMapping("/api")
 @CrossOrigin
@@ -35,6 +33,7 @@ public class StrangerController {
                             @RequestParam(name = "accountName") String accountName,
                             @RequestParam(name = "password") String password
     ) throws Exception {
+        //确认账户和密码
         String URL = "http://115.238.57.190:8012/environment/my/login";
         HttpClient httpClient = new HttpClient(URL);
         httpClient.addParameter("accountName", accountName);
@@ -50,7 +49,20 @@ public class StrangerController {
         return new Result(10000, "确认成功", jsonObject);
     }
 
-    //对于陌生人有确认记录  需要直接操作数据库
+
+    //对于陌生人有确认记录  需要直接操作数据库----本地服务已经关闭 直接写死算了
+
+    /**
+     * 目前写死的值是   admin 123456    12.01
+     * @param request
+     * @param id
+     * @param accountName
+     * @param password
+     * @param remark
+     * @param remark1
+     * @return
+     * @throws Exception
+     */
     @RequestMapping("/ensure")
     public Result getdate(HttpServletRequest request,
                           @RequestParam(name = "id") String id,
@@ -60,7 +72,7 @@ public class StrangerController {
                           @RequestParam(name = "remark1", required = false) String remark1
     ) throws Exception {
         //第一件事,对人员做确认,是否是管理人员,调用登录接口确认
-        String URL = "http://115.238.57.190:8012/environment/my/login";
+        /*String URL = "http://115.238.57.190:8012/environment/my/login";
         HttpClient httpClient = new HttpClient(URL);
         httpClient.addParameter("accountName", accountName);
         httpClient.addParameter("password", password);
@@ -70,12 +82,14 @@ public class StrangerController {
         JSONObject jsonObject = JSONObject.parseObject(content);
         System.out.println(jsonObject);
         int statuCode = jsonObject.getInteger("code");
-        System.out.println(statuCode);
-        if (statuCode != 10000) {
+        System.out.println(statuCode);*/
+        //这边直接代码写死了--- 部署结束了再完善
+        if (accountName!="admin"||password!="123456") {
             return new Result(10002, "账号不存在或密码错误");
         }
-        JSONObject dataJo = jsonObject.getJSONObject("user");
-        String userName = dataJo.getString("userName");
+       /* JSONObject dataJo = jsonObject.getJSONObject("user");
+        String userName = dataJo.getString("userName");*/
+        String userName ="admin";
         System.out.println("管理员名称="+userName);
         System.out.println("查询" + id);
         StrangerModels strangerModels = strangerModelsRepository.findByIdtest(id);
@@ -98,6 +112,9 @@ public class StrangerController {
         System.out.println("保存成功");
         return new Result(10000, "确认成功", strangerModels);
     }
+
+
+
     //一键确认所有通行记录
     @RequestMapping("/ensureAll")
     public Result getdatefr(HttpServletRequest request,
@@ -108,7 +125,7 @@ public class StrangerController {
     ) throws Exception {
         //一样,确认登录
         //第一件事,对人员做确认,是否是管理人员,调用登录接口确认
-        String URL = "http://115.238.57.190:8012/environment/my/login";
+      /*  String URL = "http://115.238.57.190:8012/environment/my/login";
         HttpClient httpClient = new HttpClient(URL);
         httpClient.addParameter("accountName", accountName);
         httpClient.addParameter("password", password);
@@ -117,14 +134,13 @@ public class StrangerController {
         String content = httpClient.getContent();
         JSONObject jsonObject = JSONObject.parseObject(content);
         System.out.println(jsonObject);
-
         int statuCode = jsonObject.getInteger("code");
-        System.out.println(statuCode);
-        if (statuCode != 10000) {
+        System.out.println(statuCode);*/
+       /* if (statuCode != 10000) {
             return new Result(10002, "账号不存在或密码错误");
-        }
-        JSONObject dataJo = jsonObject.getJSONObject("user");
-        String userName = dataJo.getString("userName");
+        }*/
+
+        String userName ="admin";
         System.out.println("管理员名称="+userName);
         //所有状态字段为空的
         List<StrangerModels> byImageIdis0 = strangerModelsRepository.findByImageIdis();

+ 1 - 1
huimv-face/src/main/resources/application-prod.yml

@@ -6,7 +6,7 @@ spring:
 
   #------DataSource-----
   datasource:
-    url: jdbc:mysql://36.26.62.70:3307/security_manager?useUnicode=true&characterEncoding=UTF-8&useSSL=false&autoReconnect=true&serverTimezone=Asia/Shanghai
+    url: jdbc:mysql://127.0.0.1:43789/security_manager?useUnicode=true&characterEncoding=UTF-8&useSSL=false&autoReconnect=true&serverTimezone=Asia/Shanghai
     #url: jdbc:mysql://192.168.1.7:3306/huimv-admin?useUnicode=true&characterEncoding=UTF-8&useSSL=false&autoReconnect=true&serverTimezone=Asia/Shanghai
     username: root
     password: root

+ 2 - 1
huimv-face/src/main/resources/application-test.yml

@@ -4,7 +4,7 @@ spring:
   #------DataSource-----
   datasource:
     #url: jdbc:mysql://127.0.0.1:3306/huimv-admin?useUnicode=true&characterEncoding=UTF-8&useSSL=false&autoReconnect=true&serverTimezone=Asia/Shanghai
-    url: jdbc:mysql://36.26.62.70:3307/security_manager?useUnicode=true&characterEncoding=UTF-8&useSSL=false&autoReconnect=true&serverTimezone=Asia/Shanghai
+    url: jdbc:mysql://36.26.62.70:43789/security_manager?useUnicode=true&characterEncoding=UTF-8&useSSL=false&autoReconnect=true&serverTimezone=Asia/Shanghai
     username: root
     password: root
     driver-class-name: com.mysql.cj.jdbc.Driver
@@ -20,3 +20,4 @@ spring:
       prefix: /
       suffix: .html
 
+#远程机器的IP和端口的配置直接放在这里

+ 1 - 1
huimv-face/target/classes/application-prod.yml

@@ -6,7 +6,7 @@ spring:
 
   #------DataSource-----
   datasource:
-    url: jdbc:mysql://36.26.62.70:3307/security_manager?useUnicode=true&characterEncoding=UTF-8&useSSL=false&autoReconnect=true&serverTimezone=Asia/Shanghai
+    url: jdbc:mysql://127.0.0.1:43789/security_manager?useUnicode=true&characterEncoding=UTF-8&useSSL=false&autoReconnect=true&serverTimezone=Asia/Shanghai
     #url: jdbc:mysql://192.168.1.7:3306/huimv-admin?useUnicode=true&characterEncoding=UTF-8&useSSL=false&autoReconnect=true&serverTimezone=Asia/Shanghai
     username: root
     password: root

+ 2 - 1
huimv-face/target/classes/application-test.yml

@@ -4,7 +4,7 @@ spring:
   #------DataSource-----
   datasource:
     #url: jdbc:mysql://127.0.0.1:3306/huimv-admin?useUnicode=true&characterEncoding=UTF-8&useSSL=false&autoReconnect=true&serverTimezone=Asia/Shanghai
-    url: jdbc:mysql://36.26.62.70:3307/security_manager?useUnicode=true&characterEncoding=UTF-8&useSSL=false&autoReconnect=true&serverTimezone=Asia/Shanghai
+    url: jdbc:mysql://36.26.62.70:43789/security_manager?useUnicode=true&characterEncoding=UTF-8&useSSL=false&autoReconnect=true&serverTimezone=Asia/Shanghai
     username: root
     password: root
     driver-class-name: com.mysql.cj.jdbc.Driver
@@ -20,3 +20,4 @@ spring:
       prefix: /
       suffix: .html
 
+#远程机器的IP和端口的配置直接放在这里

二进制
huimv-face/target/classes/com/huimv/face/constant/ConstantParam.class


二进制
huimv-face/target/classes/com/huimv/face/controller/APIcontroller.class


二进制
huimv-face/target/classes/com/huimv/face/controller/PeopleManagementController.class


二进制
huimv-face/target/classes/com/huimv/face/controller/SelectCameraController.class


二进制
huimv-face/target/classes/com/huimv/face/controller/StrangerController.class


二进制
huimv-face/target/huimv-face-1.0-SNAPSHOT-jar-with-dependencies.jar


二进制
huimv-face/target/huimv-face-1.0-SNAPSHOT.jar


二进制
huimv-face/target/huimv-face-1.0-SNAPSHOT.jar.original


+ 87 - 86
huimv-face/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst

@@ -1,86 +1,87 @@
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\MailSettings.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\SelectCameraRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\JulongImages.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\RecordsUsageModelsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\GroupsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\PersonnelsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\AlarmRecordsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\EnsureStrangerRecord.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\SmartGetUpEventModels.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\FrequencyModels.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\StartApplication.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\SelectCamera.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\SmsTemplates.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\util\HttpClient.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\StrangerModels.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\Groups.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\HumanAttrsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\ThermalModelsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\StrangerModelsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\RecordsUsageModels.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\TaskGroupsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\controller\Back.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\FrequencyListModels.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\Cameras.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\util\DateUtils.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\EnsureStrangerRecordRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\FrequenterContrastModels.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\UnknownPeopleModels.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\MailSettingsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\controller\ListEnsureStrangerResult.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\TimePros.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\Photos.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\LicenseRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\Tasks.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\HkeyeLicenseModels.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\controller\SelectCameraController.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\SmsTemplatesRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\TimeProsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\FileIds.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\FrequencyModelsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\service\StrangerModlesService.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\SmartEventModels.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\GroupMetaModelsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\controller\StrangerController.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\HkeyeLicenseModelsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\UnknownPeopleModelsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\DahuaImagesRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\ThermalModels.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\FrequencyListModelsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\TasksRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\TaskGroups.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\SwitchModelsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\util\MultThread.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\Personnels.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\DahuaImages.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\DataCleanSettings.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\FrequenterModels.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\HumanAttrs.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\controller\PeopleManagementController.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\PassRecords.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\TaskJoinCameraModels.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\LastIdModelsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\PassRecordsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\SmartGetUpEventModelsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\ConfigModelsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\CameraRoiModels.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\FrequenterContrastModelsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\DataCleanSettingsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\FrequenterModelsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\controller\PassCountController.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\CameraRoiModelsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\controller\APIcontroller.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\util\Result.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\PhotosRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\SwitchModels.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\AlarmRecords.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\ConfigModels.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\service\impl\StrangerModlesImpl.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\SmartEventModelsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\LastIdModels.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\JulongImagesRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\GroupMetaModels.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\FileIdsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\entity\License.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\TaskJoinCameraModelsRepository.java
-D:\huimv.face.recognition\huimv-face\src\main\java\com\huimv\face\repo\CamerasRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\FrequenterModels.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\UnknownPeopleModelsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\Cameras.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\FrequencyListModelsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\RecordsUsageModelsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\SmartGetUpEventModelsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\ThermalModelsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\service\StrangerModlesService.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\StrangerModels.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\TasksRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\CameraRoiModels.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\controller\StrangerController.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\PassRecords.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\PassRecordsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\SmartGetUpEventModels.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\SwitchModels.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\controller\Back.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\MailSettingsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\GroupsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\util\HttpClient.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\controller\PeopleManagementController.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\FrequencyModelsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\JulongImages.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\controller\PassCountController.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\MailSettings.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\FrequencyListModels.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\GroupMetaModelsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\FrequenterContrastModels.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\SwitchModelsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\controller\SelectCameraController.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\DataCleanSettings.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\SelectCameraRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\DahuaImages.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\TimePros.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\EnsureStrangerRecordRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\UnknownPeopleModels.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\DataCleanSettingsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\TaskJoinCameraModelsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\SmsTemplatesRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\AlarmRecordsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\HkeyeLicenseModelsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\FileIds.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\GroupMetaModels.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\FileIdsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\CamerasRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\TaskGroupsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\License.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\Tasks.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\FrequenterModelsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\CameraRoiModelsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\service\impl\StrangerModlesImpl.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\TaskGroups.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\HumanAttrsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\RecordsUsageModels.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\StartApplication.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\ThermalModels.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\FrequencyModels.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\JulongImagesRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\ConfigModels.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\LastIdModelsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\AlarmRecords.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\util\MultThread.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\util\Result.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\DahuaImagesRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\HumanAttrs.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\SmartEventModelsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\TaskJoinCameraModels.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\LicenseRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\Photos.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\EnsureStrangerRecord.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\PhotosRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\TimeProsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\LastIdModels.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\util\DateUtils.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\Groups.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\controller\APIcontroller.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\PersonnelsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\SmartEventModels.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\HkeyeLicenseModels.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\ConfigModelsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\StrangerModelsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\controller\ListEnsureStrangerResult.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\repo\FrequenterContrastModelsRepository.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\constant\ConstantParam.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\SelectCamera.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\Personnels.java
+D:\Project\huimv-face-haiyan\huimv-face\src\main\java\com\huimv\face\entity\SmsTemplates.java