using SqlSugar; using System; namespace YBDevice.Entity { /// /// 安邦儿童处方 /// [SugarTable("AB_Prescription", TableDescription = "安邦儿童处方", IsDisabledUpdateAll = false, IsDisabledDelete = true)] public class AB_Prescription { /// /// 主键 /// [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; } } }