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 study_statistics
|
|
{
|
|
/// <summary>
|
|
/// 学习id
|
|
/// </summary>
|
|
public string StudyId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 学习名称
|
|
/// </summary>
|
|
public string StudyName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 已学习学生数量
|
|
/// </summary>
|
|
public int LearnedStudents { get; set; }
|
|
}
|
|
}
|