using SqlSugar; using System; namespace YBDevice.Entity { /// /// 安邦儿童处方,按年龄 /// [SugarTable("AB_PrescriptionByAge", TableDescription = "邦儿童处方,按年龄", IsDisabledUpdateAll = false, IsDisabledDelete = true)] public class AB_PrescriptionByAge { /// /// 主键 /// [SugarColumn(ColumnDescription = "主键", IsPrimaryKey = true)] public Guid Id { get; set; } /// /// 最小年龄,月龄,如果是-1则表示全年龄 /// [SugarColumn(ColumnDescription = "最小年龄,月龄,如果是-1则表示全年龄")] public int MinAge { get; set; } /// /// 最大年龄,月龄,如果是-1则表示全年龄 /// [SugarColumn(ColumnDescription = "最大年龄,月龄,如果是-1则表示全年龄")] public int MaxAge { get; set; } /// /// 类型,1-运动,2-睡眠,3-情绪 /// [SugarColumn(ColumnDescription = "类型,1-运动,2-睡眠,3-情绪")] public PrescriptionAdviceType Type { get; set; } /// /// 内容 /// [SugarColumn(ColumnDescription = "内容", ColumnDataType = "text")] public string Content { get; set; } } }