using System.Collections.Generic; using TEAMModelOS.SDK.Models; namespace TEAMModelBI.Models { /// /// 试题的结构 /// public class BlobItemInfo { public string id { get; set; } public string pid { get; set; } public Exercise exercise { get; set; } public int render { get; set; } public Questions item { get; set; } } public class Exercise { public List answer { get; set; } public string explain { get; set; } public string type { get; set; } public int opts { get; set; } public List knowledge { get; set; } public int field { get; set; } public int level { get; set; } public string periodId { get; set; } public List gradeIds { get; set; } public string subjectId { get; set; } public List children { get; set; } = new List(); public string scope { get; set; } public int score { get; set; } public List repair { get; set; } = new List(); } public class Questions { public string question { get; set; } public List option { get; set; } } public class OptionInfo { public string code { get; set; } public string value { get; set; } } }