diff --git a/Tiobon.Core.Api/Tiobon.Core.xml b/Tiobon.Core.Api/Tiobon.Core.xml
index 6d7a55f4..a509bc67 100644
--- a/Tiobon.Core.Api/Tiobon.Core.xml
+++ b/Tiobon.Core.Api/Tiobon.Core.xml
@@ -798,7 +798,7 @@
- 获取考试记录明细扩展接口
+ 提交评语接口
diff --git a/Tiobon.Core.Services/Ghre/Ghre_ExamRecordServices.cs b/Tiobon.Core.Services/Ghre/Ghre_ExamRecordServices.cs
index 27f97611..1273b8f0 100644
--- a/Tiobon.Core.Services/Ghre/Ghre_ExamRecordServices.cs
+++ b/Tiobon.Core.Services/Ghre/Ghre_ExamRecordServices.cs
@@ -297,6 +297,8 @@ public class Ghre_ExamRecordServices : BaseServices
{
var recordDetail = details.FirstOrDefault(m => m.ExamPaperQuestionId == x.Id);
- recordDetail.Score = x.Score;
+ recordDetail.Score = x.RealScore;
recordDetail.IsCorrect = x.Score == x.RealScore ? true : false;
});
diff --git a/Tiobon.Core/Tiobon.Core.xml b/Tiobon.Core/Tiobon.Core.xml
index 6d7a55f4..a509bc67 100644
--- a/Tiobon.Core/Tiobon.Core.xml
+++ b/Tiobon.Core/Tiobon.Core.xml
@@ -798,7 +798,7 @@
- 获取考试记录明细扩展接口
+ 提交评语接口