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.
36 lines
645 B
36 lines
645 B
// |
|
// AddWatchViewController.h |
|
// LekangGuard |
|
// |
|
// Created by ecell on 2022/10/12. |
|
// |
|
|
|
#import "BaseViewController.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface AddWatchViewController : BaseViewController |
|
|
|
/// 关系ID |
|
@property (nonatomic ,assign) NSInteger relationshipId; |
|
|
|
/// 关系 |
|
@property (nonatomic ,strong) NSString *relationship; |
|
|
|
/// 号码 |
|
@property (nonatomic ,strong) NSString *phone; |
|
|
|
/// 设备号 |
|
@property (nonatomic ,strong) NSString *imei; |
|
|
|
/// 设备类型 |
|
@property (nonatomic ,assign) NSInteger deviceType; |
|
|
|
/// 查询后返回数据模型 |
|
@property (nonatomic ,strong) ScanCodeModel *model; |
|
|
|
|
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|