using System.Collections.Generic; namespace Dto { public class UploadExamDto { /// /// /// public string id { get; set; } /// /// /// public string appId { get; set; } /// /// /// public string courseId { get; set; } /// /// /// public string examId { get; set; } /// /// /// public string examinationId { get; set; } /// /// /// public string stuId { get; set; } /// /// /// public string groupId { get; set; } /// /// /// public string machineId { get; set; } /// /// /// public string batchId { get; set; } /// /// /// public string recordContent { get; set; } /// /// /// public string operationType { get; set; } /// /// /// public string isComp { get; set; } /// /// /// public string currentProcess { get; set; } /// /// /// public string sumProcess { get; set; } /// /// /// public string score { get; set; } /// /// /// public string preScore { get; set; } /// /// /// public string inTimes { get; set; } /// /// /// public string remark { get; set; } /// /// /// public string stepName { get; set; } /// /// /// public string testPoint { get; set; } /// /// /// public string defaultScore { get; set; } } public class StepListItem { /// /// 流程组件名一次接线图、二次接线图、二次回路原理图 /// public string stepName { get; set; } /// /// 请检查一次接线图、二次接线图、二次回路原理图是否一致 /// public string testPoint { get; set; } /// /// /// public float setScore { get; set; } /// /// /// public float defaultScore { get; set; } /// /// /// public string isKey { get; set; } /// /// 批次号 /// public string batch { get; set; } /// /// /// public string isTrue { get; set; } /// /// 原因 /// public string cause { get; set; } /// /// 答案 /// public List answers { get; set; } } public class StepListDto { /// /// 问题内容(Question 或 ObjectName) /// public string question { get; set; } /// /// 学生选择的答案 /// public string studentAnswer { get; set; } /// /// 正确答案 /// public string YAnwser { get; set; } } public class UploadExamStepList { /// /// /// public string time { get; set; } /// /// /// public string score { get; set; } /// /// /// public List stepList { get; set; } } }