|
@@ -25,6 +25,7 @@ namespace TEAMModelOS.Service.Models
|
|
public Paper() {
|
|
public Paper() {
|
|
item = new List<ItemInfo>();
|
|
item = new List<ItemInfo>();
|
|
}
|
|
}
|
|
|
|
+
|
|
[JsonProperty(PropertyName = "id")]
|
|
[JsonProperty(PropertyName = "id")]
|
|
public string id { get; set; }
|
|
public string id { get; set; }
|
|
|
|
|
|
@@ -44,26 +45,28 @@ namespace TEAMModelOS.Service.Models
|
|
/// </summary>
|
|
/// </summary>
|
|
public Dictionary<string, ScoreCount> typeScore { get; set; }
|
|
public Dictionary<string, ScoreCount> typeScore { get; set; }
|
|
public Dictionary<string, ScoreCount> levelScore { get; set; }
|
|
public Dictionary<string, ScoreCount> levelScore { get; set; }
|
|
- /// <summary>
|
|
|
|
- /// pointkey:{
|
|
|
|
- ///
|
|
|
|
- /// }
|
|
|
|
- /// </summary>
|
|
|
|
- public Dictionary<string, ScoreItem> pointScore { get; set; }
|
|
|
|
|
|
+ public Dictionary<string, ScoreItem> pointScore { get; set; }
|
|
public long createTime { get; set; }
|
|
public long createTime { get; set; }
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// 正确答案
|
|
|
|
+ /// </summary>
|
|
|
|
+ public List<Answer> answers { get; set; }
|
|
|
|
+
|
|
}
|
|
}
|
|
- public class ScoreItem
|
|
|
|
- {
|
|
|
|
- public ScoreItem()
|
|
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public class ScoreItem
|
|
{
|
|
{
|
|
- item = new List<int>();
|
|
|
|
|
|
+ public ScoreItem()
|
|
|
|
+ {
|
|
|
|
+ item = new List<int>();
|
|
|
|
+ }
|
|
|
|
+ public double score { get; set; }
|
|
|
|
+ public List<int> item { get; set; }
|
|
}
|
|
}
|
|
- public double score { get; set; }
|
|
|
|
- public List<int> item { get; set; }
|
|
|
|
- }
|
|
|
|
- public class ScoreCount{
|
|
|
|
|
|
+ public class ScoreCount{
|
|
|
|
|
|
public double score { get; set; }
|
|
public double score { get; set; }
|
|
public int count { get; set; }
|
|
public int count { get; set; }
|
|
- }
|
|
|
|
|
|
+ }
|
|
}
|
|
}
|