using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using TEAMModelOS.SDK.Models; namespace TEAMModelOS.Models.Dto { public class ExamDto { public string id { get; set; } public string name { get; set; } public List grades { get; set; } = new List(); public List targetClasses { get; set; } = new List(); public List papers { get; set; } = new List(); public List subjects { get; set; } = new List(); public PeriodSimple period { get; set; } = new PeriodSimple(); public string school { get; set; } public string creatorId { get; set; } /// /// 施测起始时间 /// public long startTime { get; set; } /// /// 施测结束时间 /// public long endTime { get; set; } public string type { get; set; } public Custom examType { get; set; } } public class TargetClass { public string id { get; set; } public string name { get; set; } } public class Papers { public string id { get; set; } public string name { get; set; } public string itemCount { get; set; } public List points { get; set; } = new List(); public List answers { get; set; } = new List(); } }