using System;
using SqlSugar;
namespace GasolineBlend.Entity
{
///
///
///
[SugarTable("dz_analyze_report")]
public class DzAnalyzeReport
{
///
///
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
public string Id { get; set; }
///
/// 发布人
///
[SugarColumn(ColumnName = "create_by")]
public string CreateBy { get; set; }
///
/// 发布日期
///
[SugarColumn(ColumnName = "create_time")]
public DateTime CreateTime { get; set; }
///
/// 更新人
///
[SugarColumn(ColumnName = "update_by")]
public string UpdateBy { get; set; }
///
/// 更新日期
///
[SugarColumn(ColumnName = "update_time")]
public DateTime UpdateTime { get; set; }
///
/// 报告标题
///
[SugarColumn(ColumnName = "title")]
public string Title { get; set; }
///
/// 标签
///
[SugarColumn(ColumnName = "tag")]
public string Tag { get; set; }
///
/// 内容
///
[SugarColumn(ColumnName = "content")]
public string Content { get; set; }
///
/// 附件地址
///
[SugarColumn(ColumnName = "attachment")]
public string Attachment { get; set; }
///
/// 浏览量
///
[SugarColumn(ColumnName = "pageviews")]
public int PageViews { get; set; }
///
/// 新闻摘要
///
[SugarColumn(ColumnName = "description")]
public string Description { get; set; }
[SugarColumn(ColumnName = "language")]
public string Language { get; set; }
[SugarColumn(ColumnName = "topic")]
public string Topic { get; set; }
[SugarColumn(ColumnName = "country")]
public string Country { get; set; }
[SugarColumn(ColumnName = "links")]
public string Links { get; set; }
[SugarColumn(ColumnName = "year")]
public string Year { get; set; }
}
}