namespace Dolphin.ExamPictureCut.Exams.Dto; public class SubjectiveLatt { public long Stroke { get; set; } public float X { get; set; } public float Y { get; set; } public long Time { get; set; } } public class TemplateJsonModel_DataArr { public string id { get; set; } public string jobName { get; set; } public string imgUrl { get; set; } public string paperId { get; set; } public long bookId { get; set; } public long chapterId { get; set; } public long partId { get; set; } public List queData { get; set; } } public class PaperQueData { public long TemplateId { get; set; } public string PaperId { get; set; } public long PartId { get; set; } public int PageIndex { get; set; } public string ImgUrl { get; set; } public int Sort { get; set; } public List QueData { get; set; } } public class TemplateJsonModel_QueData { /// /// 题号 /// public string no { get; set; } /// /// 题型 /// public string type { get; set; } /// /// 选项 /// public List options { get; set; } /// /// 答案 /// public List answer { get; set; } /// /// 关联学科网知识点 /// public List xkKnows { get; set; } = new(); /// /// 重置按钮 /// public List resetPoint { get; set; } } /// /// 选项 /// public class TemplateJsonModel_Option { /// /// 选项代号 /// public string option { get; set; } /// /// ID /// public long index { get; set; } /// /// /// public bool active { get; set; } /// /// /// public List point { get; set; } /// /// 第一个答案区域 /// public TemplateJsonModel_Rect AnswerArea { get { return point.FirstOrDefault() ?? new(); } } } /// /// 选项-坐标 /// public class TemplateJsonModel_Rect { public float pxWidth { get; set; } public float pxHeight { get; set; } public float pxTop { get; set; } public float pxLeft { get; set; } public int angle { get; set; } public string type { get; set; } public long bindId { get; set; } } /// /// 答案 /// public class TemplateJsonModel_Answer { /// /// 答案 /// public string name { get; set; } /// /// /// public bool active { get; set; } } /// /// 知识点 /// public class TemplateJsonModel_Know { /// /// /// public long id { get; set; } /// /// 知识点名称 /// public string knowName { get; set; } /// /// 知识点描述 /// public string knowDescription { get; set; } /// /// 上级ID /// public long parentId { get; set; } /// /// 上级知识点名称 /// public string parentKnowName { get; set; } /// /// 科目 /// public int subjectId { get; set; } /// /// 科目名称 /// public string subjectName { get; set; } /// /// /// public int categoryId { get; set; } /// /// /// public string categoryName { get; set; } /// /// 难度 /// public int difficulty { get; set; } /// /// 是否选中 /// public bool Checked { get; set; } }