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