NewGaoKaoApi/New_College.Model/Models/D_NewsInfo.cs

41 lines
880 B
C#

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; }
/// <summary>
///
/// </summary>
public string Author { get; set; }
/// <summary>
/// 省份编号
/// </summary>
public string ProvinceCode { get; set; }
public string Title { get; set; }
public string CoverImg { get; set; }
/// <summary>
///
/// </summary>
public string Summary { get; set; }
[SugarColumn(ColumnDataType = "longtext", Length = int.MaxValue, IsNullable = true)]
public string Detail { get; set; }
/// <summary>
///
/// </summary>
public int Click { get; set; }
}
}