using SqlSugar; using System; namespace YBDevice.Entity { /// /// 儿童体质 /// [SugarTable("YB_ChildPhysique", TableDescription = "儿童体质", IsDisabledUpdateAll = false, IsDisabledDelete = true)] public class YB_ChildPhysique { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true)] public Guid Id { get; set; } /// /// 类型,1-饮食,2-睡眠,3-精神,4-头面,5-口鼻,6-皮肤,7-指甲,8-大小便,9-出汗,10-身高体重 /// [SugarColumn(ColumnDescription = "类型,1-饮食,2-睡眠,3-精神,4-头面,5-口鼻,6-皮肤,7-指甲,8-大小便,9-出汗,10-身高体重")] public int Type { get; set; } /// /// 内容 /// [SugarColumn(ColumnDescription = "内容",ColumnDataType ="nvarchar(100)")] public string Text { get; set; } /// /// 分数 /// [SugarColumn(ColumnDescription = "分数")] public int Value { get; set; } /// /// 排序,数字越小越靠前 /// [SugarColumn(ColumnDescription = "排序,数字越小越靠前")] public int Sort { get; set; } } }