123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System.Collections.Generic;
- using TEAMModelOS.SDK.Models;
- namespace TEAMModelBI.Models
- {
- /// <summary>
- /// 试题的结构
- /// </summary>
- 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<string> answer { get; set; }
- public string explain { get; set; }
- public string type { get; set; }
- public int opts { get; set; }
- public List<string> knowledge { get; set; }
- public int field { get; set; }
- public int level { get; set; }
- public string periodId { get; set; }
- public List<string> gradeIds { get; set; }
- public string subjectId { get; set; }
- public List<string> children { get; set; } = new List<string>();
- public string scope { get; set; }
- public int score { get; set; }
- public List<Repair> repair { get; set; } = new List<Repair>();
- }
- public class Questions
- {
- public string question { get; set; }
- public List<OptionInfo> option { get; set; }
- }
- public class OptionInfo
- {
- public string code { get; set; }
- public string value { get; set; }
- }
- }
|