12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- 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<Grade> grades { get; set; } = new List<Grade>();
- public List<string> targetClasses { get; set; } = new List<string>();
- public List<Papers> papers { get; set; } = new List<Papers>();
- public List<ExamSubject> subjects { get; set; } = new List<ExamSubject>();
- public PeriodSimple period { get; set; } = new PeriodSimple();
- public string school { get; set; }
- public string creatorId { get; set; }
- /// <summary>
- /// 施测起始时间
- /// </summary>
- public long startTime { get; set; }
- /// <summary>
- /// 施测结束时间
- /// </summary>
- 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<string> points { get; set; } = new List<string>();
- public List<string> answers { get; set; } = new List<string>();
- }
- }
|