using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace ZR.Model.System { /// /// 文章目录 /// [SqlSugar.SugarTable("articleCategory")] public class ArticleCategory { public int Category_Id { get; set; } public string Name { get; set; } public int ParentId { get; set; } [JsonProperty(NullValueHandling = NullValueHandling.Ignore)] [SqlSugar.SugarColumn(IsIgnore = true)] public List Children { get; set; } } }