using System; using System.Collections.Generic; using System.Text; using System.Text.Json.Serialization; namespace TEAMModelOS.Model.Syllabus.Dtos { public class BlockPointDto { public string PartitionKey { get; set; } public string RowKey { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 描述 /// // public string Description { get; set; } /// /// 上级ID /// public string Pid { get; set; } = "root"; /// /// 学科 /// public string SubjectCode { get; set; } /// /// 建议学段 /// public string AdvicePeriodCode { get; set; } /// /// 类型0 知识块,1知识点 /// public int Type { get; set; } /// /// 是否展开 /// public bool Expand { get; set; } public int Order { get; set; } //public DateTimeOffset Timestamp { get; set; } //[IgnoreMember] // public List Points { get; set; } [JsonIgnore] public List Children { get; set; } public BlockPointDto() { Children = new List(); } } }