using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Models { /// /// 题目集合 /// public class ItemCond : CosmosEntity { public ItemCond() { pk = "ItemCond"; } //key 学段id-科目id public Dictionary> conds { get; set; } = new Dictionary>(); } public class CondCount { public KeyValuePair grade { get; set; } = new KeyValuePair(); public Dictionary type { get; set; } = new Dictionary(); public Dictionary level { get; set; } = new Dictionary(); public Dictionary field { get; set; } = new Dictionary(); } }