using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_XinWei.Commons.Dto.Open
{
public class HistoryDetailRequestDto
{
///
/// 必需的学生主键
///
public long TrainStudentId { get; set; }
///
/// 是否游客
///
public bool? TouristFlag { get; set; }
///
/// 是否双人模式
///
public bool? DoubleFlag { get; set; }
}
public class TrainAnalusisVo
{
///
/// 头像
///
public string HeadImgUrl { get; set; }
///
/// 姓名
///
public string StudentName { get; set; }
///
/// 性别
///
public string Sex { get; set; }
///
/// 班级名称
///
public string ClassName { get; set; }
///
/// 成绩
///
public string Achievement { get; set; }
///
/// 得分
///
public string Score { get; set; }
///
/// 项目名称
///
public string ProjectName { get; set; }
///
/// 评定
///
public string Rating { get; set; }
///
/// 年级排名
///
public string GradeRanking { get; set; }
///
/// 用时/绊脚次数,返回xx秒或者 xx分xx秒
///
public string Times { get; set; }
///
/// 违规次数
///
public int? ViolationsNumber { get; set; }
///
/// 视频路径
///
public string VideoRecord { get; set; }
///
/// 违规列表
///
public List TrainViolationsVo { get; set; }
}
public class TrainViolationsVo
{
///
/// 违规动作名称
///
public string ViolationName { get; set; }
///
/// 违规动作id
///
public int? ViolationId { get; set; }
///
/// 违规动图地址
///
public string PicUrl { get; set; }
///
/// 违规动作训练时间
///
public string TrainTime { get; set; }
///
/// 创建时间
///
public string CreateTime { get; set; }
}
}