You've already forked FrameTour-BE
feat(ai-cam): 新增AI相机人脸识别日志功能
- 创建人脸检测日志实体类FaceDetectLogAiCamEntity - 实现对应的MyBatis Mapper接口FaceDetectLogAiCamMapper - 添加服务接口及实现类FaceDetectLogAiCamService - 支持调用适配器进行人脸搜索并记录日志 - 记录搜索结果、匹配分数及原始响应数据 - 处理异常情况并记录错误信息到日志表中
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
package com.ycwl.basic.model.pc.faceDetectLog.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@TableName("face_detect_log_ai_cam")
|
||||
public class FaceDetectLogAiCamEntity {
|
||||
@TableId(type = IdType.AUTO)
|
||||
private Long id;
|
||||
|
||||
private Long scenicId;
|
||||
|
||||
private Long deviceId;
|
||||
|
||||
private Long faceSampleId;
|
||||
|
||||
private String dbName;
|
||||
|
||||
private String faceUrl;
|
||||
|
||||
private Float score;
|
||||
|
||||
private String matchRawResult;
|
||||
|
||||
private Date createTime;
|
||||
}
|
||||
Reference in New Issue
Block a user