feat(property):

- 新增入驻员工导入功能,支持导入员工信息和人脸数据
This commit is contained in:
2025-07-29 02:04:15 +08:00
parent 5274fb8d64
commit e3e26f46c1
8 changed files with 478 additions and 13 deletions

View File

@@ -23,10 +23,7 @@ import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.text.SimpleDateFormat;
import java.util.Collection;
import java.util.Date;
import java.util.List;
import java.util.Objects;
import java.util.*;
import static org.dromara.sis.sdk.hik.HCNetSDK.*;
@@ -420,8 +417,8 @@ public class HikAlarmCallBack implements HCNetSDK.FMSGCallBack_V31 {
// try {
// Thread.sleep(10000L);
// List<Integer> ass = Arrays.asList(3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3);
// for (int i = 0; i < arrs.size(); i++) {
// HikApiService.getInstance().controlGateway("192.168.24.188", (i + 1), arrs.get(i));
// for (int i = 0; i < ass.size(); i++) {
// HikApiService.getInstance().controlGateway("192.168.24.188", (i + 1), ass.get(i));
// }
// } catch (InterruptedException e) {
// throw new RuntimeException(e);

View File

@@ -17,7 +17,7 @@ public class FinaHWPersonReq {
/**
* 相似度
*/
private String similarityThreshold = "85";
private String similarityThreshold = "80";
/**
* page
*/

View File

@@ -1,4 +1,4 @@
package org.dromara.sis.config.timer;
package org.dromara.sis.task;
import cn.dev33.satoken.context.mock.SaTokenContextMockUtil;
import cn.dev33.satoken.stp.StpUtil;
@@ -35,14 +35,14 @@ import java.util.concurrent.atomic.AtomicReference;
/**
* @author lsm
* @apiNote AuthTimer
* @apiNote AuthSyncTask
* @since 2025/7/26
*/
@Slf4j
@Configuration
@EnableScheduling
@RequiredArgsConstructor
public class AuthTimer {
public class AuthSyncTask {
@DubboReference
private RemoteFileService remoteFileService;