2025-06-06 16:55:14 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2025-07-28 10:04:44 +08:00
|
|
|
|
using VOL.Model.Ai;
|
2025-06-06 16:55:14 +08:00
|
|
|
|
using VOL.Model.Norm.Response;
|
|
|
|
|
|
|
|
|
|
namespace VOL.Model.Training.Response
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 学生课堂记录详情
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class GetStudentClassReportDetailsModel : StudentTrainingRecordDto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 年级-班级
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string GradeAndClass { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 心率变化趋势
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<SportsProportionData> HeartRateTrend { get; set; } = new List<SportsProportionData>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 学生课堂记录详情
|
|
|
|
|
/// </summary>
|
2025-07-28 10:04:44 +08:00
|
|
|
|
public class GetStudentClassReportDetailsDto : Ai_Request
|
2025-06-06 16:55:14 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 课堂Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int ClassRoomRecordId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 学号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string StudentNo { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|