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.
34 lines
791 B
34 lines
791 B
// |
|
// StepModel.h |
|
// LekangGuard |
|
// |
|
// Created by ecell on 2022/12/9. |
|
// |
|
|
|
#import "BaseModel.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface StepModel : BaseModel |
|
|
|
/// string example: 创建时间 |
|
@property (nonatomic ,copy) NSString *createTime; |
|
|
|
/// string example: 主键Id |
|
@property (nonatomic ,copy) NSString *Id; |
|
|
|
/// string example: 设备imei |
|
@property (nonatomic ,copy) NSString *imei; |
|
|
|
/// number($double) example: 腕表今日/消耗卡路里(单位:小卡) |
|
@property (nonatomic ,copy) NSNumber *walksCalorie; |
|
|
|
/// number($double) example: 腕表今日行走总距离(单位:米) |
|
@property (nonatomic ,copy) NSNumber *walksDistance; |
|
|
|
/// integer($int32) example: 腕表今日步数总数 |
|
@property (nonatomic ,assign) NSInteger walksNum; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|