// // 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