ComplianceServer/code/Hg.Core.Entity/Dncmsbase/NewsClass.cs

41 lines
1.4 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Core.Entity.Dncmsbase
{
[Table("NewsClass")]
public class NewsClass
{
[Key]
public int? id { get; set; }
public string? title { get; set; }
public int? parentid { get; set; }
public int? status { get; set; }
public int? duetotal { get; set; }
public string? thumb { get; set; }//头像
public string? bannar { get; set; }//封面
public string? description { get; set; } //简介
public string? details { get; set; }//详情
public string? dept { get; set; } //授权使用
public string? newstype { get; set; }//资讯类型
public string? newssubtype { get; set; }//newstype=15时才有效 模板类型
public string? assignremark { get; set; }//分配标识
public string? pushtitle { get; set; }//推送标题
public string? commentpushtitle { get; set; }//评论推送标题
public string cmsmemo { get; set; }//内部标注
public string? risktips { get; set; } //风险提示
public int? icontype { get; set; }
public int? weight { get; set; }
public int? advertid { get; set; }
public int? pcmodelid { get; set; }
public int? h5modelid { get; set; }
public string? usememo { get; set; }
}
}