diff --git a/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/StuScoreApi.cs b/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/StuScoreApi.cs
index e4a560b61..08c563989 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/StuScoreApi.cs
+++ b/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/StuScoreApi.cs
@@ -24,7 +24,7 @@ namespace Learun.Application.WebApi.Modules
private ClassInfoIBLL classInfoIBLL = new ClassInfoBLL();
///
- /// 获取成绩列表
+ /// 全院学生成绩查看-打印成绩单
///
///
///
@@ -57,7 +57,7 @@ namespace Learun.Application.WebApi.Modules
{
AcademicYearNo = x.Key.AcademicYearNo,
Semester = x.Key.Semester,
- StuScoreEntityList = x.Select(y => new StuScoreEntity()
+ StuScoreEntityList = x.Select(y => new StuScoreModel()
{
AcademicYearNo = y.AcademicYearNo,
Semester = y.Semester,
@@ -105,7 +105,38 @@ namespace Learun.Application.WebApi.Modules
public class ScoreList {
public string AcademicYearNo { get; set; }
public string Semester { get; set; }
- public List StuScoreEntityList { get; set; }
+ public List StuScoreEntityList { get; set; }
+ }
+ public class StuScoreModel {
+ public string AcademicYearNo { get; set; }
+ public string Semester { get; set; }
+ ///
+ /// 课程类别码
+ ///
+ public string LessonSortNo { get; set; }
+ ///
+ /// 课程类别名称
+ ///
+ public string LessonSortName { get; set; }
+ public string LessonNo { get; set; }
+ public string LessonName { get; set; }
+ ///
+ /// 学分
+ ///
+ public decimal? StudyScore { get; set; }
+ ///
+ /// 成绩
+ ///
+ public decimal? Score { get; set; }
+ ///
+ /// 第一次补考成绩
+ ///
+ public string ScoreOfNotPass { get; set; }
+ ///
+ /// 第二次补考成绩
+ ///
+ public string ScoreOfNotPassTwo { get; set; }
+
}
}