|
@@ -30,4 +30,8 @@ public interface ExamRecordDataRepo extends JpaRepository<ExamRecordDataEntity,
|
|
@Modifying
|
|
@Modifying
|
|
@Query(value = "update ec_oes_exam_record_data set exam_record_status=?1 where id=?2", nativeQuery = true)
|
|
@Query(value = "update ec_oes_exam_record_data set exam_record_status=?1 where id=?2", nativeQuery = true)
|
|
int updateExamRecordStatusById(String examRecordStatus, Long id);
|
|
int updateExamRecordStatusById(String examRecordStatus, Long id);
|
|
-}
|
|
|
|
|
|
+
|
|
|
|
+ @Modifying
|
|
|
|
+ @Query(value = "update ec_oes_exam_record_data set sync_status=?1 where id=?2", nativeQuery = true)
|
|
|
|
+ int updateExamRecordSyncStatusById(String syncStatus, Long id);
|
|
|
|
+}
|