diff --git a/Tiobon.Core.Api/Tiobon.Core.xml b/Tiobon.Core.Api/Tiobon.Core.xml index a165c96c..5ca35530 100644 --- a/Tiobon.Core.Api/Tiobon.Core.xml +++ b/Tiobon.Core.Api/Tiobon.Core.xml @@ -313,7 +313,14 @@ - 流程提交处理 + 调用存储过程封装 + + + + + + + 调用存储过程封装 diff --git a/Tiobon.Core.Services/Ghre/Ghre_ExamRecordServices.cs b/Tiobon.Core.Services/Ghre/Ghre_ExamRecordServices.cs index 40018ed6..86216c4e 100644 --- a/Tiobon.Core.Services/Ghre/Ghre_ExamRecordServices.cs +++ b/Tiobon.Core.Services/Ghre/Ghre_ExamRecordServices.cs @@ -473,7 +473,12 @@ public class Ghre_ExamRecordServices : BaseServices= dt.Date) && (record.Status == DIC_EXAM_RECORD_STATUS.WAIT || record.Status == DIC_EXAM_RECORD_STATUS.EXAMING)) - return ServiceResult.OprateFailed("考试已结束!"); + { + record.Status = DIC_EXAM_RECORD_STATUS.EXAM_END; + + record.RetakeTimes = 10000; + } + //return ServiceResult.OprateFailed("考试已结束!"); var details = await Db.Queryable().Where(x => x.ExamRecordId == record.Id).ToListAsync(); var detailIds = details.Select(x => x.Id).ToList(); diff --git a/Tiobon.Core/Tiobon.Core.xml b/Tiobon.Core/Tiobon.Core.xml index 203dcb73..5ca35530 100644 --- a/Tiobon.Core/Tiobon.Core.xml +++ b/Tiobon.Core/Tiobon.Core.xml @@ -311,6 +311,20 @@ + + + 调用存储过程封装 + + + + + + + 调用存储过程封装 + + + + 构造函数