using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
using YIJIYI.Core.Common.Helper;
namespace New_College.Model.Models
{
///
/// 招生简章
///
public class D_Enrollmentinproduction : EntityModel
{
///
/// 院校Id
///
[SugarColumn(IsNullable = true)]
public int Universityid { get; set; }
///
/// 发布时间
///
[SugarColumn(IsNullable = true)]
public DateTime Pushdate { get; set; } = TimeUtil.GetCstDateTime();
///
/// 标题
///
[SugarColumn(IsNullable = true)]
public string Title { get; set; }
///
/// 文章内容
///
[SugarColumn(IsNullable = true)]
public string Content { get; set; }
}
}