using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
///
/// 测评结果表 生涯能力和心理测量
///
public class Test_PsychMeasurementInfo : RootEntity
{
///
/// 学生Id
///
public long StudentId { get; set; }
///
/// 周期Id
///
public int CycleTimeId { get; set; }
///
/// 年级名称
///
[SugarColumn(IsNullable = true)]
public string GradeName { get; set; }
///
/// 班级名称
///
[SugarColumn(IsNullable = true)]
public string ClassName { get; set; }
///
/// 分类Id
///
public int CategoryId { get; set; }
///
/// 结果
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 1000, IsNullable = true)]
public string Result { get; set; }
///
/// 是否打开
///
public int IsOpen { get; set; } = 1;
}
}