using Admin.NET.Core;
|
using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace FZCZTB.NET.MD
|
{
|
/// <summary>
|
/// 投诉质疑结果
|
/// </summary>
|
[SugarTable("FB_Neirongfabu")]
|
[IncreTable]
|
public partial class Neirongfabu : basemodelNoId
|
{
|
/// <summary>
|
/// ID,主键
|
/// </summary>
|
[SugarColumn(IsPrimaryKey = true)]
|
public Guid Id { get; set; }
|
|
|
/// <summary>
|
/// 内容类型
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "内容类型")]
|
public int? Leirongneixing { get; set; }
|
|
|
|
/// <summary>
|
/// 是否发布
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "是否发布")]
|
public bool? IsFabu { get; set; }
|
|
/// <summary>
|
/// 是否首页显示
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "是否首页显示")]
|
public bool? IsShouyexianshi { get; set; }
|
|
/// <summary>
|
/// 内容标题
|
/// </summary>
|
[SugarColumn(Length = 200, IsNullable = false, ColumnDescription = "内容标题")]
|
public string NeirongTittle { get; set; }
|
|
/// <summary>
|
/// 封面图片
|
/// </summary>
|
[SugarColumn(Length = 512, IsNullable = true, ColumnDescription = "封面图片")]
|
public string Fengmiantupian { get; set; }
|
|
|
/// <summary>
|
/// 排序 越小越靠前
|
/// </summary>
|
[SugarColumn( IsNullable = true, ColumnDescription = "排序 越小越靠前")]
|
public int? Sort { get; set; }
|
|
/// <summary>
|
/// 发布时间
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "发布时间")]
|
public DateTime? FabuDate { get; set; }
|
|
|
/// <summary>
|
/// 内容摘要
|
/// </summary>
|
[SugarColumn(Length = 200, IsNullable = true, ColumnDescription = "内容摘要")]
|
public string NeirongZhaiyao { get; set; }
|
|
/// <summary>
|
/// 内容描述
|
/// </summary>
|
[SugarColumn(ColumnDescription = "内容描述", ColumnDataType = StaticConfig.CodeFirst_BigString)]
|
public string NeirongMiaoshu { get; set; }
|
}
|
}
|