47 lines
1.0 KiB
C#
47 lines
1.0 KiB
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using VOL.Entity.Enum;
|
|||
|
using VOL.Model.School.Request;
|
|||
|
|
|||
|
namespace VOL.Model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 老师数据统计
|
|||
|
/// </summary>
|
|||
|
public class TeacherDataStatsParam : ModeParam
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 老师Id
|
|||
|
/// </summary>
|
|||
|
public int? TeacherId { get; set; }
|
|||
|
|
|||
|
///// <summary>
|
|||
|
///// 学年+日期开始
|
|||
|
///// </summary>
|
|||
|
//public DateTime? YearAndDateStart { get; set; }
|
|||
|
|
|||
|
///// <summary>
|
|||
|
///// 学年+日期结束
|
|||
|
///// </summary>
|
|||
|
//public DateTime? YearAndDateEnd { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 按季度查询
|
|||
|
/// </summary>
|
|||
|
public class QuarterlyParam : ModeParam
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 老师Id
|
|||
|
/// </summary>
|
|||
|
public int TeacherId { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 季度
|
|||
|
/// </summary>
|
|||
|
public QuarterlyCycleEnum QuarterlyCycle { get; set; }
|
|||
|
}
|
|||
|
}
|