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.
52 lines
877 B
52 lines
877 B
1 year ago
|
//
|
||
|
// EditDeviceViewController.h
|
||
|
// watch
|
||
|
//
|
||
|
// Created by xTT on 2017/7/17.
|
||
|
// Copyright © 2017年 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "baseTabViewController.h"
|
||
|
|
||
|
@interface EditDeviceViewController : baseTabViewController
|
||
|
|
||
|
/**
|
||
|
添加 按钮
|
||
|
*/
|
||
|
@property (strong, nonatomic) UIBarButtonItem *addBarButton;
|
||
|
|
||
|
/**
|
||
|
编辑 保存 按钮
|
||
|
*/
|
||
|
@property (strong, nonatomic) UIBarButtonItem *editAndSaveBarButton;
|
||
|
|
||
|
/**
|
||
|
是否是添加模式
|
||
|
*/
|
||
|
@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
|