46 lines
1.8 KiB
C#
46 lines
1.8 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace Hg.Core.Entity.Dncmsbase
|
||
{
|
||
[Table("News")]
|
||
public class News
|
||
{
|
||
[Key]
|
||
public int id { get; set; }//ID
|
||
|
||
public int? classid { get; set; }//分类classid
|
||
public int? newstype { get; set; }//类型,1、资讯,2、视频
|
||
public int? newssubtype { get; set; }//类型扩展或小类
|
||
public string? title { get; set; }//标题
|
||
public string? subtitle { get; set; }
|
||
public DateTime? ctime { get; set; }//日期
|
||
public string? intro { get; set; }//导读
|
||
public string? url { get; set; }//网址
|
||
public string? urltxt { get; set; }//链接文字
|
||
public string? others { get; set; }//附件
|
||
public string? files { get; set; }//附件
|
||
public string? thumb { get; set; }//缩略图
|
||
public string? froms { get; set; }//来源
|
||
public int? authorid { get; set; }
|
||
public string? tags { get; set; } //关键字;
|
||
public int? status { get; set; }
|
||
public int? istop { get; set; }
|
||
public int? pushtype { get; set; }
|
||
public string? stocks { get; set; }//股票
|
||
public string? shortessay { get; set; }//短文
|
||
public string? sharethumb { get; set; }
|
||
public string? sharetxt { get; set; }
|
||
public int? correlationid { get; set; }//ID
|
||
public string? vscode { get; set; }
|
||
public int? checkstatus { get; set; }
|
||
public string? marketingshortessay { get; set; }
|
||
public int? operatorid { get; set; }
|
||
public int? operatordeptid { get; set; }
|
||
public string? deptname { get; set; }
|
||
public List<ComplianceCheckStatus>? ComplianceCheckStatus { get; set; }
|
||
}
|
||
} |