using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YBDevice.Entity
{
///
/// 丽秀中医指导
///
[SugarTable("YB_LXBodyGuide", TableDescription = "丽秀中医指导", IsDisabledUpdateAll = false, IsDisabledDelete = true)]
public class YB_LXBodyGuide
{
///
/// 主键
///
[SugarColumn(IsPrimaryKey = true)]
public Guid Id { get; set; }
///
/// 体质ID
///
[SugarColumn(ColumnDescription = "体质ID")]
public Guid TypeId { get; set; }
///
/// 特征
///
[SugarColumn(ColumnDescription = "特征", ColumnDataType = "nvarchar(100)")]
public string Feature { get; set; }
///
/// 重点人群
///
[SugarColumn(ColumnDescription = "重点人群", ColumnDataType = "nvarchar(100)")]
public string People { get; set; }
///
/// 患病倾向
///
[SugarColumn(ColumnDescription = "患病倾向", ColumnDataType = "nvarchar(100)")]
public string Sick { get; set; }
///
/// 调养方式
///
[SugarColumn(ColumnDescription = "调养方式", ColumnDataType = "nvarchar(100)")]
public string Health { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnDescription = "创建时间")]
public DateTime CreateTime { get; set; }
}
}