using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
public class D_NewsInfo : DEntityRootTenant
{
public int CategoryId { get; set; }
///
///
///
public string Author { get; set; }
///
/// 省份编号
///
public string ProvinceCode { get; set; }
public string Title { get; set; }
public string CoverImg { get; set; }
///
///
///
public string Summary { get; set; }
[SugarColumn(ColumnDataType = "longtext", Length = int.MaxValue, IsNullable = true)]
public string Detail { get; set; }
///
///
///
public int Click { get; set; }
}
}