using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
///
/// 个性倾向结果表
///
public class Test_HollandResultInfo : RootEntity
{
///
/// 学生Id
///
public int StudentId { get; set; }
///
/// 周期Id
///
public int CycleTimeId { get; set; }
///
/// 年级名称
///
public string GradeName { get; set; }
///
/// 班级名称
///
public string ClassName { get; set; }
public string Interest { get; set; }
public string Specialty { get; set; }
///
/// 喜欢的学科
///
public string LikeSubject { get; set; }
///
///
///
public string LikeCareer { get; set; }
public string TargeUniversity { get; set; }
public string AfterCareer { get; set; }
///
/// 是否出国留学
///
public int IsForeign { get; set; }
///
/// 结果
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 1000, IsNullable = true)]
public string Result { get; set; }
///
/// Tag标签
///
public string TagResult { get; set; }
///
/// 自选标签
///
public string SelectResult { get; set; }
}
}