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