diff --git a/Tiobon.Core.Services/CommonServices.cs b/Tiobon.Core.Services/CommonServices.cs index f9711b6e..91614afe 100644 --- a/Tiobon.Core.Services/CommonServices.cs +++ b/Tiobon.Core.Services/CommonServices.cs @@ -4363,9 +4363,9 @@ public partial class CommonServices : BaseServices>, ICommon id = await Db.Insertable(dict).ExecuteReturnSnowflakeIdAsync(); - var StaffUserId = await Db.Queryable().Where(x => x.UserStaffID == dict.TeacherId).Select(x => x.UserId).FirstAsync(); - if (StaffUserId > 0) - param.userId = StaffUserId; + //var StaffUserId = await Db.Queryable().Where(x => x.UserStaffID == dict.TeacherId).Select(x => x.UserId).FirstAsync(); + //if (StaffUserId > 0) + // param.userId = StaffUserId; sql = $"SELECT ISNULL(MAX(id)+1,1) FROM Ghre_TrainFeeApplyOrder_Boltone WHERE Id !='{id}' and len(Id) !=19"; var id1 = await Db.Ado.GetLongAsync(sql); diff --git a/Tiobon.Core.Services/Ghre/Ghre_ExamRecordServices.cs b/Tiobon.Core.Services/Ghre/Ghre_ExamRecordServices.cs index b42552d0..5078a109 100644 --- a/Tiobon.Core.Services/Ghre/Ghre_ExamRecordServices.cs +++ b/Tiobon.Core.Services/Ghre/Ghre_ExamRecordServices.cs @@ -898,15 +898,15 @@ public class Ghre_ExamRecordServices : BaseServices new ExamGroup() { GroupId = x.GroupId, ExamRecordId = x.ExamRecordId, - ExamTime = x.ExamTime.ObjToString() + (x.Score != null ? $"等分:{x.Score}" : ""), + ExamTime = x.ExamTime.ObjToString() + (x.Score != null ? $"得分:{x.Score}" : ""), }).ToList(); return ServiceResult.OprateSuccess("查询成功!", extend);