using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
public class D_MajorInformation : EntityModel
{
[SugarColumn(IsNullable = true)]
public string Name { get; set; }
///
/// 院校id
///
[SugarColumn(IsNullable = true)]
public int UniversityId { get; set; }
///
/// 专业id
///
[SugarColumn(IsNullable = true)]
public int MajorId { get; set; }
///
/// 专业主修课程
///
[SugarColumn(ColumnDataType = "longtext", Length = int.MaxValue, IsNullable = true)]
public string Majorcourse { get; set; }
///
/// 专业前景
///
[SugarColumn(ColumnDataType = "longtext", Length = int.MaxValue, IsNullable = true)]
public string Majorintent { get; set; }
///
/// 专业介绍
///
[SugarColumn(ColumnDataType = "longtext", Length = int.MaxValue, IsNullable = true)]
public string Majordescription { get; set; }
///
/// 相关技能
///
[SugarColumn(ColumnDataType = "longtext", Length = int.MaxValue, IsNullable = true)]
public string Skill { get; set; }
///
/// 考研方向
///
[SugarColumn(ColumnDataType = "longtext", Length = int.MaxValue, IsNullable = true)]
public string Postgraduate { get; set; }
}
}