31 lines
686 B
C#
31 lines
686 B
C#
using LearningOfficer.OA.Common.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.Classes
|
|
{
|
|
/// <summary>
|
|
/// 未绑定的班级搜索参数
|
|
/// </summary>
|
|
public class UnboundManageClassSearchDto
|
|
{
|
|
/// <summary>
|
|
/// 学校id
|
|
/// </summary>
|
|
public long SchoolId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 年级
|
|
/// </summary>
|
|
public string GradeLevel { get; set; }
|
|
|
|
/// <summary>
|
|
/// 毕业届
|
|
/// </summary>
|
|
public int GradeYear { get; set; }
|
|
}
|
|
}
|