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.
42 lines
693 B
42 lines
693 B
// |
|
// EditDeviceViewController.h |
|
// watch |
|
// |
|
// Created by xTT on 2017/7/17. |
|
// Copyright © 2017年 xTT. All rights reserved. |
|
// |
|
|
|
#import "baseTabViewController.h" |
|
|
|
@interface EditDeviceViewController : baseTabViewController |
|
|
|
|
|
/** |
|
是否是添加模式 |
|
*/ |
|
@property (assign, nonatomic) BOOL isAdd; |
|
|
|
/** |
|
是否 显示全部 资料 |
|
*/ |
|
@property (assign, nonatomic) BOOL isShowAllInfo; |
|
|
|
/** |
|
传进来的 imei |
|
*/ |
|
@property (strong, nonatomic) NSString * IMEI; |
|
|
|
/** |
|
是否是编辑模式 |
|
*/ |
|
@property (assign, nonatomic) BOOL isEdit; |
|
|
|
/** |
|
编辑的Model |
|
*/ |
|
@property (strong, nonatomic) Device *editDevice; |
|
|
|
/// 设备型号 |
|
@property (nonatomic ,copy) NSNumber *deviceType; |
|
|
|
@end
|
|
|