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.
53 lines
1.4 KiB
53 lines
1.4 KiB
1 year ago
|
//
|
||
|
// SelectFamilyContactViewController.h
|
||
|
// tongxin
|
||
|
//
|
||
|
// Created by ecell on 2021/7/19.
|
||
|
// Copyright © 2021 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
#import "FamilyContact.h"
|
||
|
#import "baseTabViewController.h"
|
||
|
|
||
|
@interface SelectFamilyContactViewController : baseTabViewController
|
||
|
|
||
|
@property(strong , nonatomic) NSString *imei;
|
||
|
|
||
|
//-----设备模式
|
||
|
/**
|
||
|
是否是添加设备的模式
|
||
|
*/
|
||
|
@property(assign , nonatomic) BOOL isAddDevice;
|
||
|
|
||
|
/**
|
||
|
如果添加设备的时候存在管理员,这个是管理员的信息, 默认 nil
|
||
|
*/
|
||
|
@property(strong , nonatomic) NSDictionary * adminInfo;
|
||
|
|
||
|
@property(strong , nonatomic) NSString *contact; //关系
|
||
|
|
||
|
@property(assign , nonatomic) NSNumber *contactId; // 关系Id
|
||
|
|
||
|
@property(strong , nonatomic) NSString *phone; //电话
|
||
|
|
||
|
@property(strong , nonatomic) NSString *shortcut;
|
||
|
//-----
|
||
|
|
||
|
@property(assign , nonatomic) BOOL isContact; // 是否是 添加联系人模式 (一个是 添加设备模式)
|
||
|
@property(assign , nonatomic) BOOL isAddContact;
|
||
|
@property(assign , nonatomic) BOOL isAddFamilyContact; // 是否是添加亲情号码
|
||
|
@property(assign , nonatomic) BOOL isUpdateFamilyContact; // 是否是修改亲情号码
|
||
|
//-----联系人模式
|
||
|
|
||
|
@property(strong , nonatomic) NSString *name; //联系人 NAME
|
||
|
|
||
|
@property(strong , nonatomic) Contacts *contactModel; //联系人 NAME
|
||
|
|
||
|
@property(strong , nonatomic) FamilyContact *familyContactModel;
|
||
|
|
||
|
//-----
|
||
|
@end
|
||
|
|
||
|
|