using YD_Event.Core.Enum; namespace YD_Event.Core.Entities; public class Talks : Entity, ISoftDelete, ICreatedTime, IAvailability { /// /// 是否置顶 /// public bool IsTop { get; set; } /// /// 说说正文 /// [SugarColumn(ColumnDataType = "text")] public string Content { get; set; } /// /// 图片 /// [SugarColumn(Length = 2048)] public string? Images { get; set; } /// /// 是否允许评论 /// public bool IsAllowComments { get; set; } /// /// 可用状态 /// public AvailabilityStatus Status { get; set; } /// /// 标记删除 /// public bool DeleteMark { get; set; } /// /// 创建时间 /// public DateTime CreatedTime { get; set; } }