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
481 B
28 lines
481 B
![]()
2 years ago
|
//
|
||
|
// JLSportDataModel.h
|
||
|
// Test
|
||
|
//
|
||
|
// Created by EzioChan on 2021/4/6.
|
||
|
// Copyright © 2021 Zhuhai Jieli Technology Co.,Ltd. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface JLSportDataModel : NSObject
|
||
|
|
||
|
/// 设备的UUID
|
||
|
@property(nonatomic,strong)NSString *dev_uuid;
|
||
|
|
||
|
/// 请求内容数据
|
||
|
@property(nonatomic,strong)NSData *rqData;
|
||
|
|
||
|
/// 功能掩码
|
||
|
@property(nonatomic,assign)uint32_t funcMask;
|
||
|
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|