using SqlSugar; namespace YBDevice.Entity { /// /// 手动添加的记录 /// public class YB_ResultAdd { /// /// 手动添加的记录 /// public YB_ResultAdd() { } private System.Int32 _Id; /// /// /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public System.Int32 Id { get { return this._Id; } set { this._Id = value; } } private System.Int32 _ResultId; /// /// 关联的记录ID /// public System.Int32 ResultId { get { return this._ResultId; } set { this._ResultId = value; } } private System.Decimal _Height; /// /// 身高值,CM /// public System.Decimal Height { get { return this._Height; } set { this._Height = value; } } private System.Decimal _Weight; /// /// 体重值,KG /// public System.Decimal Weight { get { return this._Weight; } set { this._Weight = value; } } private System.Int32 _UserId; /// /// 用户ID /// public System.Int32 UserId { get { return this._UserId; } set { this._UserId = value; } } private System.Int32 _FamilyId; /// /// 家庭成员ID /// public System.Int32 FamilyId { get { return this._FamilyId; } set { this._FamilyId = value; } } private System.DateTime _ResultTime; /// /// 测量时间 /// public System.DateTime ResultTime { get { return this._ResultTime; } set { this._ResultTime = value; } } private System.DateTime _CreateTime; /// /// 添加时间 /// public System.DateTime CreateTime { get { return this._CreateTime; } set { this._CreateTime = value; } } } }