47 lines
1000 B
C#
47 lines
1000 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using VOL.Entity.Enum;
|
|
|
|
namespace VOL.Model
|
|
{
|
|
/// <summary>
|
|
/// 学生成绩查询
|
|
/// </summary>
|
|
public class StudentsTestDataListParam : PageDto
|
|
{
|
|
/// <summary>
|
|
///老师Id
|
|
/// </summary>
|
|
public int TeacherId { get; set; }
|
|
|
|
/// <summary>
|
|
///年级Id
|
|
/// </summary>
|
|
public int GradeId { get; set; }
|
|
|
|
/// <summary>
|
|
///班级Id
|
|
/// </summary>
|
|
public int ClassId { get; set; }
|
|
|
|
/// <summary>
|
|
///学生学号
|
|
/// </summary>
|
|
public string StudentNo { get; set; }
|
|
|
|
/// <summary>
|
|
///性别
|
|
/// </summary>
|
|
public SexType Sex { get; set; }
|
|
|
|
/// <summary>
|
|
///测试类别Id
|
|
/// </summary>
|
|
public int CategoryId { get; set; }
|
|
}
|
|
}
|