bug fixewd

develop
old易 2024-07-11 10:34:57 +08:00
parent 13d4ede485
commit b9a706e460
1 changed files with 2 additions and 2 deletions

View File

@ -1258,7 +1258,7 @@ namespace New_College.Services
Money = x.Fee,
Year = x.AcademicYear,
PlanName = x.MajorName + (!string.IsNullOrWhiteSpace(x.Remark) ? "(" + x.Remark + ")" : ""),
PlanNum = int.Parse(x._23Count),
PlanNum = x._plancount,
Scoreline = x._23Score == "0" ? "-" : x._23Score,
LowScoreRank = x._23ScoreLine == 0 ? "-" : x._23ScoreLine.ToString(),
Subject = x._24subject
@ -1287,7 +1287,7 @@ namespace New_College.Services
Money = x.Fee,
Year = x.AcademicYear,
PlanName = x.MajorName + (!string.IsNullOrWhiteSpace(x.Remark) ? "(" + x.Remark + ")" : ""),
PlanNum = int.Parse(x._23Count),
PlanNum = x._plancount,
Scoreline = x._23Score == "0" ? "-" : x._23Score,
LowScoreRank = x._23ScoreLine == 0 ? "-" : x._23ScoreLine.ToString(),
YearName = yearName,