123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- using CZFW.Core;
- using CZFW.Framework.Attributes;
- using CZFW.Framework.Model.Entity;
- using System;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace CZKJ.GBRS2.Entity
- {
- /// <summary>
- /// 文章
- /// </summary>
- [Table("cz_gbrs2_article")]
- public class ArticleEntity : EntityBase,ISeo,IShare
- {
- /// <summary>
- /// 标题
- /// </summary>
- [Display(Name = "标题")]
- [StringLength(512)]
- [Required(ErrorMessage = "不能为空")]
- public string Title { get; set; }
- /// <summary>
- /// 类型
- /// </summary>
- [Display(Name = "类型")]
- [Invisible(AddVisible = true, ViewVisible = true,FormVisible =true)]
- [DropdownSrc(SrcUrl = "/Manage/Type/GetTypeListByParentId?parentId=")]
- [Required]
- public int TypeId { get; set; }
- /// <summary>
- /// 图片
- /// </summary>
- [Display(Name = "图片")]
- [StringLength(512)]
- [DataType(DataType.ImageUrl)]
- public string Image { get; set; }
- /// <summary>
- /// 新闻来源
- /// </summary>
- [Display(Name = "新闻来源")]
- [StringLength(64)]
- public string Source { get; set; }
- /// <summary>
- /// 简介
- /// </summary>
- [Display(Name = "简介")]
- [StringLength(1024)]
- [DataType(DataType.MultilineText)]
- [Invisible(AddVisible = true, FormVisible = true)]
- public string Summary { get; set; }
- /// <summary>
- /// 详情
- /// </summary>
- [Display(Name = "详情")]
- [DataType(DataType.Html)]
- [Invisible(AddVisible = true, FormVisible = true, ViewVisible = true)]
- public string Detail { get; set; }
- /// <summary>
- /// 发布时间
- /// </summary>
- [Display(Name = "发布时间")]
- [DataType(DataType.DateTime)]
- public DateTime PublishTime { get; set; }
- /// <summary>
- ///类型
- /// </summary>
- [NotMapped]
- [Display(Name = "类型")]
- [Invisible(TableVisible = true, ViewVisible = true)]
- public string TypeName { get; set; }
- #region SEO及分享
- [NotMapped]
- private string seotitle;
- [NotMapped]
- private string seodescription;
- [NotMapped]
- private string seokeywords;
- [NotMapped]
- private string sharetitle;
- [NotMapped]
- private string sharedescription;
- [NotMapped]
- private string shareurl;
- [NotMapped]
- private string shareimage;
- [StringLength(128)]
- [Display(Name = "SEO标题")]
- [Invisible(FormVisible = true, AddVisible = true)]
- public string SeoTitle
- {
- get { return string.IsNullOrEmpty(seotitle) ? Title : seotitle; }
- set { seotitle = value; }
- }
- /// <summary>
- /// SEO描述
- /// </summary>
- [StringLength(512)]
- [Display(Name = @"SEO描述")]
- [DataType(DataType.MultilineText)]
- [Invisible(FormVisible = true, AddVisible = true)]
- public string SeoDescription
- {
- get { return string.IsNullOrEmpty(seodescription) ? Summary : seodescription; }
- set { seodescription = value; }
- }
- /// <summary>
- /// SEO关键词
- /// </summary>
- [StringLength(128)]
- [Display(Name = @"SEO关键词")]
- [Invisible(FormVisible = true, AddVisible = true)]
- public string SeoKeywords
- {
- get { return string.IsNullOrEmpty(seokeywords) ? Title : seokeywords; }
- set { seokeywords = value; }
- }
- /// <summary>
- /// 分享图片
- /// </summary>
- [StringLength(512)]
- [Display(Name = @"分享图片")]
- [DataType(DataType.ImageUrl)]
- [Invisible(FormVisible = true, AddVisible = true)]
- public string ShareImage
- {
- get { return string.IsNullOrEmpty(shareimage) ? Image : shareimage; }
- set { shareimage = value; }
- }
- /// <summary>
- /// 分享标题
- /// </summary>
- [StringLength(128)]
- [Display(Name = @"分享标题")]
- [Invisible(FormVisible = true, AddVisible = true)]
- public string ShareTitle
- {
- get { return string.IsNullOrEmpty(sharetitle) ? Title : sharetitle; }
- set { sharetitle = value; }
- }
- /// <summary>
- /// 分享URL
- /// </summary>
- [StringLength(512)]
- [Display(Name = @"分享URL")]
- [Invisible(FormVisible = true, AddVisible = true)]
- public string ShareUrl
- {
- get { return string.IsNullOrEmpty(shareurl) ? ConfigHelper.GetValue<string>("SystemInfo:Website") : shareurl; }
- set { shareurl = value; }
- }
- /// <summary>
- /// 分享描述
- /// </summary>
- [StringLength(512)]
- [Display(Name = @"分享描述")]
- [Invisible(FormVisible = true, AddVisible = true)]
- public string ShareDescription
- {
- get { return string.IsNullOrEmpty(sharedescription) ? Summary : sharedescription; }
- set { sharedescription = value; }
- }
- #endregion
- }
- }
|