AIFit-SDK for ble body fat scale
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

AppUser.h 494B

123456789101112131415161718192021222324252627
  1. //
  2. // AppUser.h
  3. // AIFit-Demo
  4. //
  5. // Created by steven wu on 2019/12/19.
  6. // Copyright © 2019 wujia121. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface AppUser : NSObject
  11. @property (nonatomic, assign) float weightKg;
  12. /**Be Noted:
  13. male: 1 female: 2
  14. */
  15. @property (nonatomic, assign) int sex;
  16. @property (nonatomic, assign) int age;
  17. @property (nonatomic, assign) int height;
  18. @property (nonatomic, assign) int adc;
  19. @end
  20. NS_ASSUME_NONNULL_END