using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.Models { /// /// 测评分类表 /// public class Test_CategoryInfo : RootEntity { /// /// 分类名称 /// public string Name { get; set; } /// /// 解释 /// [SugarColumn(ColumnDataType = "nvarchar", IsNullable = true, Length = 1000)] public string Desc { get; set; } /// /// 解释详情 /// [SugarColumn(ColumnDataType = "nvarchar", IsNullable = true, Length = 1000)] public string Detail { get; set; } } }