MsgPlacard.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.BsModels
  4. {
  5. public partial class MsgPlacard
  6. {
  7. public int Id { get; set; }
  8. public int Sort { get; set; }
  9. public int QueryCount { get; set; }
  10. public int Status { get; set; }
  11. public int Version { get; set; }
  12. public DateTime? CreateDate { get; set; }
  13. public DateTime? UpdateDate { get; set; }
  14. public string CreateMan { get; set; }
  15. public string UpdateMan { get; set; }
  16. public string SeoTitle { get; set; }
  17. public string SeoKeyword { get; set; }
  18. public string SeoDescription { get; set; }
  19. public string Url { get; set; }
  20. public string Remark { get; set; }
  21. public string ExtendColumn { get; set; }
  22. public DateTime? PushTime { get; set; }
  23. public string PushParam { get; set; }
  24. public int PushFlag { get; set; }
  25. public int PushType { get; set; }
  26. public string BgPic { get; set; }
  27. public DateTime? EffectEndDate { get; set; }
  28. public DateTime? EffectStartDate { get; set; }
  29. public int ShowType { get; set; }
  30. public ulong IsTop { get; set; }
  31. public string Content { get; set; }
  32. public string Summary { get; set; }
  33. public string Title { get; set; }
  34. public int MsgType { get; set; }
  35. }
  36. }