using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TEAMModelOS.SDK.Models.Cosmos.Normal { public class ArtSetting : CosmosEntity { //public string id { get; set; } 区级id // code :"ArtSetting" //pk :"ArtSetting" public string subject { get; set; } public List dimensions { get; set; } = new List(); } public class ArtDimension { /// /// 维度 /// public string dimension { get; set; } public List subjects { get; set; } } /// /// 描述 /// public class ArtDesc { /// /// 描述文本 /// public List contents { get; set; } = new List(); /// /// 关联年级 /// public List grades { get; set; } = new List(); /// /// 第一学段,第二学段,.... /// public string period { get; set; } } public class ArtSubject { /// /// 科目 /// public string subject { get; set; } /// /// 知识块 /// public List blocks { get; set; } = new List(); /// /// 描述 /// public List descs { get; set; } = new List(); } }