97 lines
2.7 KiB
C#
97 lines
2.7 KiB
C#
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.NET.Core
|
|
{
|
|
/// <summary>
|
|
/// 量表结果解释
|
|
/// </summary>
|
|
[SugarTable("bus_scaleexplain_info", "量表结果解释")]
|
|
public class BusScaleExplain : EntityBase
|
|
{
|
|
/// <summary>
|
|
/// 量表类型Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "标签ScaleId")]
|
|
public long ScaleId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 标签
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "标签", IsNullable = true)]
|
|
[MaxLength(20)]
|
|
public string Tag { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 标签名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "标签名称")]
|
|
[MaxLength(40)]
|
|
public string Title { get; set; }
|
|
|
|
/// <summary>
|
|
/// 标签描述
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "标签描述", Length = int.MaxValue, IsNullable = true)]
|
|
[MaxLength(2000)]
|
|
public string Description { get; set; }
|
|
|
|
/// <summary>
|
|
/// 标签解析
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "标签解析", Length = int.MaxValue, IsNullable = true)]
|
|
[MaxLength(2000)]
|
|
public string Resolving { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 性格特质
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "性格特质", Length = int.MaxValue, IsNullable = true)]
|
|
[MaxLength(2000)]
|
|
public string Traits { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 主要特征
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "主要特征", Length = int.MaxValue, IsNullable = true)]
|
|
[MaxLength(int.MaxValue)]
|
|
public string Features { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 领域
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "领域", Length = int.MaxValue, IsNullable = true)]
|
|
[MaxLength(int.MaxValue)]
|
|
public string MainDomain { get; set; }
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "职业", Length = int.MaxValue, IsNullable = true)]
|
|
[MaxLength(int.MaxValue)]
|
|
public string Occupation { get; set; }
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "专业", Length = int.MaxValue, IsNullable = true)]
|
|
[MaxLength(int.MaxValue)]
|
|
public string Major { get; set; }
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "院校", Length = int.MaxValue, IsNullable = true)]
|
|
[MaxLength(int.MaxValue)]
|
|
public string University { get; set; }
|
|
|
|
}
|
|
}
|