using SqlSugar; using System; namespace YBDevice.Entity { /// /// 科普资讯内容 /// [SugarTable("YB_nSecInfoContent", TableDescription = "科普资讯内容", IsDisabledUpdateAll = false, IsDisabledDelete = true)] public class YB_nSecInfoContent { /// /// 资讯ID /// [SugarColumn(ColumnDescription = "资讯ID")] public Guid InfoId { get; set; } /// /// 内容 /// [SugarColumn(ColumnDescription = "内容", ColumnDataType = "text")] public string Content { get; set; } } }