using SqlSugar; using System; namespace YBDevice.Entity { /// /// 儿童处方 /// [SugarTable("YB_ChildrenPrescription", TableDescription = "儿童处方", IsDisabledUpdateAll = false, IsDisabledDelete = true)] public class YB_ChildrenPrescription { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true)] public Guid Id { get; set; } /// /// 类型,1-身高标准,2-BMI标准,3-体重标准 /// [SugarColumn(ColumnDescription = "类型,1-身高标准,2-BMI标准,3-体重标准")] public PrescriptionType Type { get; set; } /// /// 标准,参考处方文档 /// [SugarColumn(ColumnDescription = "标准,参考处方文档")] public int Level { get; set; } /// /// 营养,全年龄 /// [SugarColumn(ColumnDescription = "营养,全年龄", ColumnDataType = "text")] public string Nutrition { get; set; } /// /// 运动,全年龄 /// [SugarColumn(ColumnDescription = "运动,全年龄", ColumnDataType = "text")] public string Sport { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDescription = "创建时间")] public DateTime CreateTime { get; set; } } }