Files
HTCloud/HT.Cloud.Domain/Entity/ContentManage/ArticleNewsEntity.cs
2023-08-24 09:28:09 +08:00

209 lines
6.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using SqlSugar;
using System;
using System.ComponentModel.DataAnnotations;
namespace HT.Cloud.Domain.ContentManage
{
/// <summary>
/// 创 建:超级管理员
/// 日 期2020-06-09 19:42
/// 描 述:新闻管理实体类
/// </summary>
[SugarTable("cms_articlenews")]
[TenantAttribute("0")]
public class ArticleNewsEntity : IEntity<ArticleNewsEntity>, ICreationAudited, IModificationAudited, IDeleteAudited
{
/// <summary>
/// 文章主键Id
/// </summary>
/// <returns></returns>
[SugarColumn(ColumnName = "F_Id", IsPrimaryKey = true, ColumnDescription = "主键Id")]
public string F_Id { get; set; }
/// <summary>
/// 类别Id
/// </summary>
/// <returns></returns>
[Required(ErrorMessage = "新闻类别不能为空")]
[SugarColumn(IsNullable = false, ColumnName = "F_CategoryId", ColumnDataType = "nvarchar(50)", ColumnDescription = "类别Id", UniqueGroupNameList = new string[] { "cms_articlenews" })]
public string F_CategoryId { get; set; }
/// <summary>
/// 类别名称(不映射任何列)
/// </summary>
/// <returns></returns>
[SugarColumn(IsIgnore = true)]
public string F_CategoryName { get; set; }
/// <summary>
/// 标题
/// </summary>
/// <returns></returns>
[Required(ErrorMessage = "新闻标题不能为空")]
[SugarColumn(IsNullable = true, ColumnName = "F_Title", ColumnDataType = "nvarchar(200)", ColumnDescription = "标题", UniqueGroupNameList = new string[] { "cms_articlenews" })]
public string F_Title { get; set; }
/// <summary>
/// 链接地址
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnName = "F_LinkUrl", ColumnDataType = "longtext", ColumnDescription = "链接地址")]
public string F_LinkUrl { get; set; }
/// <summary>
/// 图片地址
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnName = "F_ImgUrl", ColumnDataType = "longtext", ColumnDescription = "图片地址")]
public string F_ImgUrl { get; set; }
/// <summary>
/// SEO标题
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnName = "F_SeoTitle", ColumnDataType = "longtext", ColumnDescription = "SEO标题")]
public string F_SeoTitle { get; set; }
/// <summary>
/// SEO关键字
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnName = "F_SeoKeywords", ColumnDataType = "longtext", ColumnDescription = "SEO关键字")]
public string F_SeoKeywords { get; set; }
/// <summary>
/// SEO描述
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnName = "F_SeoDescription", ColumnDataType = "longtext", ColumnDescription = "SEO描述")]
public string F_SeoDescription { get; set; }
/// <summary>
/// 标签
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnName = "F_Tags", ColumnDataType = "longtext", ColumnDescription = "标签")]
public string F_Tags { get; set; }
/// <summary>
/// 摘要
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnName = "F_Zhaiyao", ColumnDataType = "longtext", ColumnDescription = "摘要")]
public string F_Zhaiyao { get; set; }
/// <summary>
/// 内容
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnName = "F_Description", ColumnDataType = "longtext", ColumnDescription = "内容")]
public string F_Description { get; set; }
/// <summary>
/// 排序
/// </summary>
/// <returns></returns>
[Required(ErrorMessage = "排序不能为空")]
[Range(0, 99999999, ErrorMessage = "排序大小必须介于1~99999999之间")]
[SugarColumn(IsNullable = true, ColumnDescription = "排序")]
public int? F_SortCode { get; set; }
/// <summary>
/// 是否置顶
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnDescription = "是否置顶")]
public bool? F_IsTop { get; set; }
/// <summary>
/// 是否推荐
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnDescription = "是否推荐")]
public bool? F_IsHot { get; set; }
/// <summary>
/// 是否热门
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnDescription = "是否热门")]
public bool? F_IsRed { get; set; }
/// <summary>
/// 点击次数
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnDescription = "点击次数")]
public int? F_Click { get; set; }
/// <summary>
/// 来源
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnName = "F_Source", ColumnDataType = "nvarchar(50)", ColumnDescription = "来源")]
public string F_Source { get; set; }
/// <summary>
/// 作者
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnName = "F_Author", ColumnDataType = "nvarchar(50)", ColumnDescription = "作者")]
public string F_Author { get; set; }
/// <summary>
/// 是否启用
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnDescription = "是否启用")]
public bool? F_EnabledMark { get; set; }
/// <summary>
/// 逻辑删除标志
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnDescription = "逻辑删除标志")]
public bool? F_DeleteMark { get; set; }
/// <summary>
/// 创建时间
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnDescription = "创建时间")]
public DateTime? F_CreatorTime { get; set; }
/// <summary>
/// 创建人
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnName = "F_CreatorUserId", ColumnDataType = "nvarchar(50)", ColumnDescription = "创建人")]
public string F_CreatorUserId { get; set; }
/// <summary>
/// 最后修改时间
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnDescription = "最后修改时间")]
public DateTime? F_LastModifyTime { get; set; }
/// <summary>
/// 最后修改人
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnName = "F_LastModifyUserId", ColumnDataType = "nvarchar(50)", ColumnDescription = "最后修改人")]
public string F_LastModifyUserId { get; set; }
/// <summary>
/// 删除时间
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnDescription = "删除时间")]
public DateTime? F_DeleteTime { get; set; }
/// <summary>
/// 删除人
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnName = "F_DeleteUserId", ColumnDataType = "nvarchar(50)", ColumnDescription = "删除人")]
public string F_DeleteUserId { get; set; }
}
}