using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace Operater.DbModel { /// /// /// [SugarTable("category")] public class Category { /// /// /// public Category() { } /// /// id /// [SugarColumn(ColumnName = "id",IsPrimaryKey =true)] public System.Int64 Id { get; set; } /// /// 名称 /// [SugarColumn(ColumnName = "name")] public System.String Name { get; set; } /// /// 级别 /// [SugarColumn(ColumnName = "level")] public System.Int64? Level { get; set; } /// /// 父id /// [SugarColumn(ColumnName = "parentid")] public System.Int64? Parentid { get; set; } } }