using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VOL.Model
{
///
/// 学生成绩添加
///
public class AddStudentsTestDataParam
{
///
/// 更新Id
///
public int Id { get; set; }
///
///学号
///
public string StudentNo { get; set; }
///
///测试类别
///
public string CategoryEnum { get; set; }
///
///测试结果
///
public float Value { get; set; }
///
///运动时长/分钟
///
public int MotionDuration { get; set; }
///
///运动消耗
///
public int Consumption { get; set; }
}
}