34 lines
787 B
C#
34 lines
787 B
C#
using Volo.Abp.EventBus;
|
|
|
|
namespace Dolphin.ExamPictureCut.Exams.Dto;
|
|
|
|
[EventName("Dolphin.ExamStudentGatherEto")]
|
|
public class ExamStudentGatherEto
|
|
{
|
|
/// <summary>
|
|
/// 考试Id
|
|
/// </summary>
|
|
public long ExamId { get; set; }
|
|
/// <summary>
|
|
/// 考试科目Id
|
|
/// </summary>
|
|
public long ExamSubjectId { get; set; }
|
|
/// <summary>
|
|
/// 所属学校
|
|
/// </summary>
|
|
public long SchoolId { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public long ExamSubjectSchoolId { get; set; }
|
|
/// <summary>
|
|
/// 模板id
|
|
/// </summary>
|
|
public long BookId { get; set; }
|
|
/// <summary>
|
|
/// 所属学生
|
|
/// </summary>
|
|
public string StudentExamNum { get; set; }
|
|
public DateTime LastCollectTime { get; set; }
|
|
}
|