2025-06-06 16:00:39 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using VOL.Entity.Enum;
|
|
|
|
|
|
|
|
|
|
namespace VOL.Model.School.Request
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 学生训练记录
|
|
|
|
|
/// </summary>
|
2025-06-06 16:55:14 +08:00
|
|
|
|
public class StudentTrainingRecordsParam : PageDto
|
2025-06-06 16:00:39 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
///学生学号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string StudentNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 训练类型
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Ai_ModeEnum TrainType { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 等级
|
|
|
|
|
/// </summary>
|
|
|
|
|
public AchievementRank Rank { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 等级中文
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string RankStr { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 项目
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int CategoryValue { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 开始时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Display(Name = "开始时间")]
|
|
|
|
|
public DateTime? StartTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 结束时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Display(Name = "结束时间")]
|
|
|
|
|
public DateTime? EndTime { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|