12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.MainModels
- {
- public partial class MsgPlacard
- {
- public int Id { get; set; }
- public int Sort { get; set; }
- public int QueryCount { get; set; }
- public int Status { get; set; }
- public int Version { get; set; }
- public DateTime? CreateDate { get; set; }
- public DateTime? UpdateDate { get; set; }
- public string CreateMan { get; set; }
- public string UpdateMan { get; set; }
- public string SeoTitle { get; set; }
- public string SeoKeyword { get; set; }
- public string SeoDescription { get; set; }
- public string Url { get; set; }
- public string Remark { 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 int ShowType { 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; }
- }
- }
|