|
@@ -3,13 +3,11 @@ package cn.com.qmth.examcloud.core.basic.dao;
|
|
|
import org.springframework.data.jpa.repository.JpaRepository;
|
|
|
import org.springframework.data.repository.query.QueryByExampleExecutor;
|
|
|
|
|
|
-import cn.com.qmth.examcloud.core.basic.dao.entity.StudentFaceEntity;
|
|
|
+import cn.com.qmth.examcloud.core.basic.dao.entity.FacesetEntity;
|
|
|
|
|
|
public interface StudentFaceRepo
|
|
|
extends
|
|
|
- JpaRepository<StudentFaceEntity, Long>,
|
|
|
- QueryByExampleExecutor<StudentFaceEntity> {
|
|
|
-
|
|
|
- StudentFaceEntity findByStudentId(Long studentId);
|
|
|
+ JpaRepository<FacesetEntity, Long>,
|
|
|
+ QueryByExampleExecutor<FacesetEntity> {
|
|
|
|
|
|
}
|