using SqlSugar;
namespace YBDevice.Entity
{
///
/// 测量记录计算结果
///
public class YB_Measure
{
///
/// 测量记录计算结果
///
public YB_Measure()
{
}
///
///
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public System.Int32 Id { get; set; }
///
/// 测量记录ID
///
public System.Int32 ResultId { get; set; }
///
/// 计费状态,0-未领取,1-已领取,-1-未知状态,2-重复领取
///
public System.Int32 TakeStatus { get; set; }
///
/// 性别,1-男,2-女,0-未知
///
public System.Int32 Sex { get; set; }
///
/// 年龄,岁
///
public System.Int32 Age { get; set; }
///
/// 年龄月份
///
public System.Int32 Month { get; set; }
///
/// 身高,单位为CM
///
public System.Decimal Height { get; set; }
///
/// 体重
///
public System.Decimal Weight { get; set; }
///
/// 类型,1-单阻抗,2-八电极
///
public System.Int32 Type { get; set; }
///
/// 分配给的家庭成员ID
///
public System.Int32 FamilyId { get; set; }
///
/// 脂肪率
///
public System.Decimal fat_r { get; set; }
///
/// 肌肉率
///
public System.Decimal muscle { get; set; }
///
/// 水份
///
public System.Decimal water { get; set; }
///
/// 骨重
///
public System.Decimal bone { get; set; }
///
/// 基础代谢
///
public System.Decimal kcal { get; set; }
///
/// 脂肪重量
///
public System.Decimal fat_w { get; set; }
///
/// 内脂
///
public System.Decimal visceral { get; set; }
///
/// 蛋白质
///
public System.Decimal protein { get; set; }
///
/// 体龄
///
public System.Int32 bodyage { get; set; }
///
/// BMI
///
public System.Decimal bmi { get; set; }
///
/// 分数
///
public System.Decimal cmi { get; set; }
///
/// 皮下脂肪
///
public System.Decimal sfr { get; set; }
///
/// 肌肉量
///
public System.Decimal muscleval { get; set; }
///
/// 蛋白量
///
public System.Decimal proteinval { get; set; }
///
/// 去脂体重
///
public System.Decimal lbm { get; set; }
///
/// 体型,参考体型枚举
///
public System.String body { get; set; }
///
/// 肥胖等级,参考等级枚举
///
public System.String fatlevel { get; set; }
///
/// 计算时间
///
public System.DateTime createtime { get; set; }
}
}