package com.ycwl.basic.mapper; import com.ycwl.basic.model.pc.faceDetectLog.entity.FaceDetectLogAiCamEntity; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** * AI相机人脸识别日志Mapper */ @Mapper public interface FaceDetectLogAiCamMapper { int add(FaceDetectLogAiCamEntity entity); /** * 根据faceId查询所有识别记录 * @param faceId 人脸ID * @return 识别记录列表 */ List listByFaceId(Long faceId); }