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.
28 lines
549 B
28 lines
549 B
// |
|
// JL_SDM_Stress.h |
|
// Test |
|
// |
|
// Created by EzioChan on 2021/4/7. |
|
// Copyright © 2021 Zhuhai Jieli Technology Co.,Ltd. All rights reserved. |
|
// |
|
|
|
#import "JLSportDataModel.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
/// 实时压力 |
|
@interface JL_SDM_Stress : JLSportDataModel |
|
|
|
@property(nonatomic,assign)int stress; |
|
|
|
/// 处理回复数据内容 |
|
/// @param value 数据内容 |
|
/// @param submask 功能标记位 |
|
+(JL_SDM_Stress*)responseData:(NSData *)value subMask:(NSData *)submask; |
|
|
|
/// 请求内容 |
|
+(JL_SDM_Stress*)require; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|