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