ArticleEntity.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. using CZFW.Core;
  2. using CZFW.Framework.Attributes;
  3. using CZFW.Framework.Model.Entity;
  4. using System;
  5. using System.ComponentModel.DataAnnotations;
  6. using System.ComponentModel.DataAnnotations.Schema;
  7. namespace CZKJ.GBRS2.Entity
  8. {
  9. /// <summary>
  10. /// 文章
  11. /// </summary>
  12. [Table("cz_gbrs2_article")]
  13. public class ArticleEntity : EntityBase,ISeo,IShare
  14. {
  15. /// <summary>
  16. /// 标题
  17. /// </summary>
  18. [Display(Name = "标题")]
  19. [StringLength(512)]
  20. [Required(ErrorMessage = "不能为空")]
  21. public string Title { get; set; }
  22. /// <summary>
  23. /// 类型
  24. /// </summary>
  25. [Display(Name = "类型")]
  26. [Invisible(AddVisible = true, ViewVisible = true,FormVisible =true)]
  27. [DropdownSrc(SrcUrl = "/Manage/Type/GetTypeListByParentId?parentId=")]
  28. [Required]
  29. public int TypeId { get; set; }
  30. /// <summary>
  31. /// 图片
  32. /// </summary>
  33. [Display(Name = "图片")]
  34. [StringLength(512)]
  35. [DataType(DataType.ImageUrl)]
  36. public string Image { get; set; }
  37. /// <summary>
  38. /// 新闻来源
  39. /// </summary>
  40. [Display(Name = "新闻来源")]
  41. [StringLength(64)]
  42. public string Source { get; set; }
  43. /// <summary>
  44. /// 简介
  45. /// </summary>
  46. [Display(Name = "简介")]
  47. [StringLength(1024)]
  48. [DataType(DataType.MultilineText)]
  49. [Invisible(AddVisible = true, FormVisible = true)]
  50. public string Summary { get; set; }
  51. /// <summary>
  52. /// 详情
  53. /// </summary>
  54. [Display(Name = "详情")]
  55. [DataType(DataType.Html)]
  56. [Invisible(AddVisible = true, FormVisible = true, ViewVisible = true)]
  57. public string Detail { get; set; }
  58. /// <summary>
  59. /// 发布时间
  60. /// </summary>
  61. [Display(Name = "发布时间")]
  62. [DataType(DataType.DateTime)]
  63. public DateTime PublishTime { get; set; }
  64. /// <summary>
  65. ///类型
  66. /// </summary>
  67. [NotMapped]
  68. [Display(Name = "类型")]
  69. [Invisible(TableVisible = true, ViewVisible = true)]
  70. public string TypeName { get; set; }
  71. #region SEO及分享
  72. [NotMapped]
  73. private string seotitle;
  74. [NotMapped]
  75. private string seodescription;
  76. [NotMapped]
  77. private string seokeywords;
  78. [NotMapped]
  79. private string sharetitle;
  80. [NotMapped]
  81. private string sharedescription;
  82. [NotMapped]
  83. private string shareurl;
  84. [NotMapped]
  85. private string shareimage;
  86. [StringLength(128)]
  87. [Display(Name = "SEO标题")]
  88. [Invisible(FormVisible = true, AddVisible = true)]
  89. public string SeoTitle
  90. {
  91. get { return string.IsNullOrEmpty(seotitle) ? Title : seotitle; }
  92. set { seotitle = value; }
  93. }
  94. /// <summary>
  95. /// SEO描述
  96. /// </summary>
  97. [StringLength(512)]
  98. [Display(Name = @"SEO描述")]
  99. [DataType(DataType.MultilineText)]
  100. [Invisible(FormVisible = true, AddVisible = true)]
  101. public string SeoDescription
  102. {
  103. get { return string.IsNullOrEmpty(seodescription) ? Summary : seodescription; }
  104. set { seodescription = value; }
  105. }
  106. /// <summary>
  107. /// SEO关键词
  108. /// </summary>
  109. [StringLength(128)]
  110. [Display(Name = @"SEO关键词")]
  111. [Invisible(FormVisible = true, AddVisible = true)]
  112. public string SeoKeywords
  113. {
  114. get { return string.IsNullOrEmpty(seokeywords) ? Title : seokeywords; }
  115. set { seokeywords = value; }
  116. }
  117. /// <summary>
  118. /// 分享图片
  119. /// </summary>
  120. [StringLength(512)]
  121. [Display(Name = @"分享图片")]
  122. [DataType(DataType.ImageUrl)]
  123. [Invisible(FormVisible = true, AddVisible = true)]
  124. public string ShareImage
  125. {
  126. get { return string.IsNullOrEmpty(shareimage) ? Image : shareimage; }
  127. set { shareimage = value; }
  128. }
  129. /// <summary>
  130. /// 分享标题
  131. /// </summary>
  132. [StringLength(128)]
  133. [Display(Name = @"分享标题")]
  134. [Invisible(FormVisible = true, AddVisible = true)]
  135. public string ShareTitle
  136. {
  137. get { return string.IsNullOrEmpty(sharetitle) ? Title : sharetitle; }
  138. set { sharetitle = value; }
  139. }
  140. /// <summary>
  141. /// 分享URL
  142. /// </summary>
  143. [StringLength(512)]
  144. [Display(Name = @"分享URL")]
  145. [Invisible(FormVisible = true, AddVisible = true)]
  146. public string ShareUrl
  147. {
  148. get { return string.IsNullOrEmpty(shareurl) ? ConfigHelper.GetValue<string>("SystemInfo:Website") : shareurl; }
  149. set { shareurl = value; }
  150. }
  151. /// <summary>
  152. /// 分享描述
  153. /// </summary>
  154. [StringLength(512)]
  155. [Display(Name = @"分享描述")]
  156. [Invisible(FormVisible = true, AddVisible = true)]
  157. public string ShareDescription
  158. {
  159. get { return string.IsNullOrEmpty(sharedescription) ? Summary : sharedescription; }
  160. set { sharedescription = value; }
  161. }
  162. #endregion
  163. }
  164. }