using FreeSql.DataAnnotations; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ZhonTai.Admin.Core.Entities; namespace ZhonTai.Admin.Domain.Notice { /// /// 公告 /// [Table(Name = "ditui_notice")] public partial class NoticeEntity : EntityTenant { /// /// 公告标题 /// public string Title { get; set; } /// /// 内容 /// [Column(DbType ="text")] public string Context { get; set; } /// /// 排序 越大越靠前 /// public int Rank { get; set; } /// /// 是否弹窗 1弹窗 0不弹窗 /// public int IsAlter { get; set; } = 0; } }