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