using SqlSugar;
using System;
namespace YBDevice.Entity
{
///
/// 儿童常见中医体质辨识与保健
///
public class YB_ChildBodyDetail
{
///
/// 主键
///
[SugarColumn(IsPrimaryKey = true)]
public Guid Id { get; set; }
///
/// 体质类型
///
[SugarColumn(ColumnDescription = "体质类型")]
public ChildBodyTypeEnum Type { get; set; }
///
/// 定义
///
[SugarColumn(ColumnDescription = "定义",ColumnDataType ="text")]
public string Define { get; set; }
///
/// 形体特征
///
[SugarColumn(ColumnDescription = "形体特征", ColumnDataType = "text")]
public string Proper { get; set; }
///
/// 素体表现
///
[SugarColumn(ColumnDescription = "素体表现", ColumnDataType = "text")]
public string Show { get; set; }
///
/// 饮食
///
[SugarColumn(ColumnDescription = "饮食", ColumnDataType = "text")]
public string Food { get; set; }
///
/// 生长发育
///
[SugarColumn(ColumnDescription = "生长发育", ColumnDataType = "text")]
public string Growth { get; set; }
///
/// 外界环境
///
[SugarColumn(ColumnDescription = "外界环境", ColumnDataType = "text")]
public string OutsideEnv { get; set; }
///
/// 转化
///
[SugarColumn(ColumnDescription = "转化", ColumnDataType = "text")]
public string Conver { get; set; }
///
/// 成因
///
[SugarColumn(ColumnDescription = "成因", ColumnDataType = "text")]
public string Causes { get; set; }
///
/// 建议方案
///
[SugarColumn(ColumnDescription = "建议方案", ColumnDataType = "text")]
public string Advice { get; set; }
///
/// 中药辩体保健方案
///
[SugarColumn(ColumnDescription = "中药辩体保健方案", ColumnDataType = "text")]
public string ZYAdvice { get; set; }
///
/// 保健方案
///
[SugarColumn(ColumnDescription = "保健方案", ColumnDataType = "text")]
public string CareAdivce { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnDescription = "创建时间")]
public DateTime CreateTime { get; set; }
}
}