using New_College.Common; using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.Models { public class N_AgentCourse : RootEntity { public string Title { get; set; } public CardTypeEnum cardType { get; set; } /// /// 产品教程,赚钱攻略,操作指南 /// public int Type { get; set; } [SugarColumn(ColumnDataType = "longtext", Length = int.MaxValue, IsNullable = true)] public string Content { get; set; } } }