|
@@ -1,5 +1,6 @@
|
|
|
using DocumentFormat.OpenXml.Office2010.ExcelAc;
|
|
|
using System.Collections.Generic;
|
|
|
+using TEAMModelOS.SDK.Models;
|
|
|
|
|
|
namespace TEAMModelBI.Models
|
|
|
{
|
|
@@ -21,17 +22,17 @@ namespace TEAMModelBI.Models
|
|
|
public List<string> answer { get; set; }
|
|
|
public string explain { get; set; }
|
|
|
public string type { get; set; }
|
|
|
- public string opts { 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; }
|
|
|
+ public List<string> children { get; set; } = new List<string>();
|
|
|
public string scope { get; set; }
|
|
|
public int score { get; set; }
|
|
|
- public List<string> repair { get; set; }
|
|
|
+ public List<Repair> repair { get; set; } = new List<Repair>();
|
|
|
}
|
|
|
|
|
|
public class Questions
|