using System; using System.Collections.Generic; namespace MySystem.MpMainModels2 { public partial class MsgAlert { public int Id { get; set; } public int Sort { get; set; } public int QueryCount { get; set; } public int Status { get; set; } public DateTime? CreateDate { get; set; } public DateTime? UpdateDate { get; set; } public string SeoTitle { get; set; } public string SeoKeyword { get; set; } public string SeoDescription { get; set; } public ulong IsWeekend { get; set; } public ulong AlertFlag { get; set; } public int TimeByDay { get; set; } public string BtnText { get; set; } public string Url { get; set; } public string UrlParam { get; set; } public string ExtendColumn { get; set; } public DateTime? PushTime { get; set; } public string PushParam { get; set; } public int PushFlag { get; set; } public int PushType { get; set; } public string BgPic { get; set; } public DateTime? EffectEndDate { get; set; } public DateTime? EffectStartDate { get; set; } public ulong IsTop { get; set; } public string Content { get; set; } public string Summary { get; set; } public string Title { get; set; } public int MsgType { get; set; } public string CreateMan { get; set; } public string UpdateMan { get; set; } public int Version { get; set; } } }