using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TEAMModelOS.SDK.Models.Cosmos.Student { public class ErrorItems : CosmosEntity { public ErrorItems() { pk = "ErrorItems"; } //错题集合(题目信息)该学生所有考试 public List its { get; set; } = new List(); public string stuId { get; set; } public string school { get; set; } //所属活动Id public string activityId { get; set; } //所属课程 public string subjectId { get; set; } public long time { get; set; } } public class Items { //题目ID public string id { get; set; } //所属blob public string blob { get; set; } public int level { get; set; } public string type { get; set; } public List knowledge { get; set; } = new(); //如果是小题则会存在大题ID public string pId { get; set; } //熟练度 后续扩展 public double proficiency { get; set; } //星号标记 后续扩展 public double asteriskMark { get; set; } public int qamode { get; set; } = 0; } }