using System;
namespace Admin.NET.Application
{
///
/// 量表结果解释输出参数
///
public class BusScaleExplainOutput
{
///
/// 标签ScaleId
///
public long ScaleId { get; set; }
///
/// 标签
///
public string Tag { get; set; }
///
/// 标签名称
///
public string Title { get; set; }
///
/// 标签描述
///
public string Description { get; set; }
///
/// 标签解析
///
public string Resolving { get; set; }
///
/// 性格特质
///
public string Traits { get; set; }
///
/// 主要特征
///
public string Features { get; set; }
///
/// 职业
///
public string Occupation { get; set; }
///
/// 专业
///
public string Major { get; set; }
///
/// 院校
///
public string University { get; set; }
///
/// Id主键
///
public long Id { get; set; }
}
}