You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
562 B
32 lines
562 B
// |
|
// lastDataModel.h |
|
// tongxin |
|
// |
|
// Created by ecell on 2023/7/5. |
|
// Copyright © 2023 xTT. All rights reserved. |
|
// |
|
|
|
#import "baseModel.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface lastDataModel : baseModel |
|
|
|
/// 血压 |
|
@property (nonatomic ,copy) NSDictionary *bloodData; |
|
|
|
/// 体温 |
|
@property (nonatomic ,copy) NSDictionary *tempData; |
|
|
|
/// 计步 |
|
@property (nonatomic ,copy) NSDictionary *stepData; |
|
|
|
/// 血氧 |
|
@property (nonatomic ,copy) NSDictionary *oxygenData; |
|
|
|
/// 心率 |
|
@property (nonatomic ,copy) NSDictionary *heartData; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|