36 lines
789 B
C#
36 lines
789 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using VOL.Model.School.Request;
|
|||
|
|
|||
|
namespace VOL.Model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 班级数据
|
|||
|
/// </summary>
|
|||
|
public class ClassDataStatsParam : ModeParam
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 班级Id
|
|||
|
/// </summary>
|
|||
|
public int? ClassId { get; set; }
|
|||
|
|
|||
|
///// <summary>
|
|||
|
///// 学期
|
|||
|
///// </summary>
|
|||
|
//public string Semester { get; set; }
|
|||
|
|
|||
|
///// <summary>
|
|||
|
///// 日期开始
|
|||
|
///// </summary>
|
|||
|
//public DateTime? YearAndDateStart { get; set; }
|
|||
|
|
|||
|
///// <summary>
|
|||
|
///// 日期结束
|
|||
|
///// </summary>
|
|||
|
//public DateTime? YearAndDateEnd { get; set; }
|
|||
|
}
|
|||
|
}
|