iOS AILinkBleSDK - 蓝牙SDK
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.

ELBloodBleDataModel.h 710B

12345678910111213141516171819202122232425
  1. //
  2. // ELBloodBleDataModel.h
  3. // Elink
  4. //
  5. // Created by iot_user on 2019/5/11.
  6. // Copyright © 2019 iot_iMac. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "ELBloodBleSDKHeader.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface ELBloodBleDataModel : NSObject
  12. @property (nonatomic, copy) NSString *dia;//Diastolic blood pressure(舒张压)
  13. @property (nonatomic, copy) NSString *sys; //Systolic blood pressure(收缩压)
  14. @property (nonatomic, assign) int heartRate; //Heart rate(心率)
  15. @property (nonatomic, assign) ELDeviceBloodPressureUnit unit;//单位
  16. @property (nonatomic, assign) int point; //小数点
  17. @property (nonatomic, assign) long long createTime;//时间
  18. @end
  19. NS_ASSUME_NONNULL_END