This commit is contained in:
tanglong 2025-08-12 16:46:20 +08:00
parent 4ef7c8e9d0
commit 48fb74a685
3 changed files with 6 additions and 1 deletions

View File

@ -121,6 +121,7 @@ namespace VOL.Business.Services.Norm
StudentName = s.StudentName,
Photo = s.Photo,
WorkStatus = s.WorkStatus,
Value = s.Value,
WorkStatusStr = s.WorkStatus.GetDescription()
};

View File

@ -40,6 +40,11 @@ namespace VOL.Model.HomeWork
/// </summary>
public StudentWorkStatus WorkStatus { get; set; }
/// <summary>
/// 成绩
/// </summary>
public int Value { get; set; }
/// <summary>
/// 学生作业状态
/// </summary>

View File

@ -350,7 +350,6 @@ namespace VOL.WebApi
AllowAnyHeader().
AllowCredentials());
}
});
}
}