using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
public class V_ExaminationPolicy : EntityModel
{
///
/// 省份id
///
public int AreaId { get; set; }
public string AreaName { get; set; }
///
/// 标题
///
[SugarColumn(IsNullable = true)]
public string Title { get; set; }
///
/// 图片
///
[SugarColumn(IsNullable = true)]
public string Img { get; set; }
///
/// 政策内容
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 4000, IsNullable = true)]
public string Content { get; set; }
}
}