using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YBDevice.Entity { /// /// 儿童中医体质问题 /// public class YB_ChildBodyQA { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true)] public Guid Id { get; set; } /// /// 体质类型 /// [SugarColumn(ColumnDescription = "体质类型")] public ChildBodyTypeEnum Type { get; set; } /// /// 没有(根本不)的分数值 /// [SugarColumn(ColumnDescription = "没有(根本不)的分数值")] public int NoneValue { get; set; } /// /// 很少(有一点)的分数值 /// [SugarColumn(ColumnDescription = " 很少(有一点)的分数值")] public int LittleValue { get; set; } /// /// 有时(有些)的分数值 /// [SugarColumn(ColumnDescription = "有时(有些)的分数值")] public int SomeValue { get; set; } /// /// 经常(相当)的分数值 /// [SugarColumn(ColumnDescription = "经常(相当)的分数值")] public int OftenValue { get; set; } /// /// 总是(非常)的分数值 /// [SugarColumn(ColumnDescription = "总是(非常)的分数值")] public int AlWaysValue { get; set; } /// /// 问题内容 /// [SugarColumn(ColumnDescription = "问题内容",ColumnDataType ="nvarchar(200)",IsNullable =false)] public string Content { get; set; } /// /// 同分数的题目ID /// public Guid? SameId { get; set; } /// /// 同分数的题目类型 /// public ChildBodyTypeEnum SameType { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDescription = "创建时间", IsNullable = false)] public DateTime CreateTime { get; set; } } }