using FreeSql.DatabaseModel; using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Threading.Tasks; using Newtonsoft.Json; using FreeSql.DataAnnotations; namespace BBWYB.Server.Model.Db.HY { [Table(Name = "hycats", DisableSyncStructure = true)] public partial class HyCats { [Column(StringLength = 50, IsPrimary = true, IsNullable = false)] public string Id { get; set; } /// /// 是否最子级 /// [Column(DbType = "tinyint")] public sbyte IsLeaf { get; set; } /// /// 级别 /// [Column(DbType = "int")] public int Level { get; set; } /// /// 名称 /// [Column(IsNullable = false)] public string Name { get; set; } /// /// 父级ID /// [Column(StringLength = 50)] public string ParentId { get; set; } } }