using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Competition.Mysql.Other
{
public class train_statistics
{
///
/// 实训id
///
public string TrainId { get; set; }
///
/// 实训名称
///
public string TrainName { get; set; }
///
/// 已实训学生数量
///
public int LearnedStudents { get; set; }
}
}