27 lines
560 B
C#
27 lines
560 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Competition.Mysql.Other
|
|
{
|
|
public class train_statistics
|
|
{
|
|
/// <summary>
|
|
/// 实训id
|
|
/// </summary>
|
|
public string TrainId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 实训名称
|
|
/// </summary>
|
|
public string TrainName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 已实训学生数量
|
|
/// </summary>
|
|
public int LearnedStudents { get; set; }
|
|
}
|
|
}
|