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 { /// /// 量表结果解释 /// [SugarTable("bus_scaleexplain_info", "量表结果解释")] public class BusScaleExplain : EntityBase { /// /// 量表类型Id /// [SugarColumn(ColumnDescription = "标签ScaleId")] public long ScaleId { get; set; } /// /// 标签 /// [SugarColumn(ColumnDescription = "标签", IsNullable = true)] [MaxLength(20)] public string Tag { get; set; } /// /// 标签名称 /// [SugarColumn(ColumnDescription = "标签名称")] [MaxLength(40)] public string Title { get; set; } /// /// 标签描述 /// [SugarColumn(ColumnDescription = "标签描述", Length = int.MaxValue, IsNullable = true)] [MaxLength(2000)] public string Description { get; set; } /// /// 标签解析 /// [SugarColumn(ColumnDescription = "标签解析", Length = int.MaxValue, IsNullable = true)] [MaxLength(2000)] public string Resolving { get; set; } /// /// 性格特质 /// [SugarColumn(ColumnDescription = "性格特质", Length = int.MaxValue, IsNullable = true)] [MaxLength(2000)] public string Traits { get; set; } /// /// 主要特征 /// [SugarColumn(ColumnDescription = "主要特征", Length = int.MaxValue, IsNullable = true)] [MaxLength(int.MaxValue)] public string Features { get; set; } /// /// 领域 /// [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; } } }