using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VOL.Model.Ai.Response
{
///
/// 跳绳报告
///
public class Ai_JumpRopeReportDto
{
///
/// 模型类型
///
public int ModelType { get; set; }
///
/// 模型名称
///
public string ModelName { get; set; }
///
///运动时长/分钟
///
public int MotionDuration { get; set; }
///
/// 学生人数
///
public int StudentCount { get; set; }
///
/// 学生列表
///
public List StudentList { get; set; }
}
public class Ai_StudentJumpRopeReportListDto
{
///
///学号
///
public string StudentNo { get; set; }
///
///姓名
///
public string StudentName { get; set; }
///
/// 排行
///
public int Ranking { get; set; }
///
///正确个数
///
public int? JumpValue { get; set; }
}
}