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.
22 lines
388 B
22 lines
388 B
// |
|
// SelectContactViewController.h |
|
// LekangGuard |
|
// |
|
// Created by ecell on 2022/10/12. |
|
// |
|
|
|
#import "BaseViewController.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface SelectContactViewController : BaseViewController |
|
|
|
/// 查询后返回数据模型 |
|
@property (nonatomic ,strong) ScanCodeModel *model; |
|
|
|
/// 设备号 |
|
@property (nonatomic ,strong) NSString *imei; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|