// // ELHeightBodyFatScaleBleWeightBodyModel.h // AILinkBleSDK // // Created by cliCk on 2021/3/25. // Copyright © 2021 IOT. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN /** 体脂数据对象模型 */ @interface ELHeightBodyFatScaleBleWeightBodyModel : NSObject ///Body fat rate, need / 10(体脂率,需要/10) @property (nonatomic, assign) NSUInteger bfr; ///Subcutaneous fat rate, need / 10(皮下脂肪率,需要/10) @property (nonatomic, assign) NSUInteger sfr; ///Visceral fat rate with an accuracy of 1(内脏脂肪率,精度为1) @property (nonatomic, assign) NSUInteger uvi; ///Muscle rate, need / 10(肌肉率,需要/10) @property (nonatomic, assign) NSUInteger rom; ///Basal metabolic rate with an accuracy of 1(基础代谢率,精度为1) @property (nonatomic, assign) NSUInteger bmr; ///Body age with an accuracy of 1(身体年龄,精度为1) @property (nonatomic, assign) NSUInteger bodyAge; ///Bone quality, need / 10(骨骼质量,需要/10) @property (nonatomic, assign) NSUInteger bm; ///Water content, need / 10(水含量,需要/10) @property (nonatomic, assign) NSUInteger vwc; ///Protein rate, need / 10(蛋白率,需要/10) @property (nonatomic, assign) NSUInteger pp; ///BMI 需要/10 @property (nonatomic, assign) NSUInteger BMI; ///Heart rate with an accuracy of 1(心率,精度为1) @property (nonatomic, assign) NSUInteger heartRate; ///肥胖等级 @property (nonatomic, assign) NSUInteger obesityGrade; //以下10个数据的单位以单位和小数点以weight的为准 //体脂-右上 @property (nonatomic, assign) NSUInteger fatMassRightTop; //体脂-右下 @property (nonatomic, assign) NSUInteger fatMassRightBottom; //体脂-左上 @property (nonatomic, assign) NSUInteger fatMassLeftTop; //体脂-左下 @property (nonatomic, assign) NSUInteger fatMassLeftBottom; //体脂-躯干 @property (nonatomic, assign) NSUInteger fatMassBody; //肌肉-右上 @property (nonatomic, assign) NSUInteger musleMassRightTop; //肌肉-右下 @property (nonatomic, assign) NSUInteger musleMassRightBottom; //肌肉-左上 @property (nonatomic, assign) NSUInteger musleMassLeftTop; //肌肉-左下 @property (nonatomic, assign) NSUInteger musleMassLeftBottom; //肌肉-躯干 @property (nonatomic, assign) NSUInteger musleMassBody; @end NS_ASSUME_NONNULL_END