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.

73 lines
1.4 KiB

//
// Contacts.h
// myWatch
//
// Created by xTT on 15/11/5.
// Copyright © 2015年 xTT. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import "baseModel.h"
@class Device;
@interface Contacts : baseModel
/**
, openid
*/
@property (nonatomic, strong) NSString *openid;
@property (nonatomic, strong) NSString *groupid;
@property (nonatomic, strong) NSNumber *type;
/**
'admin', 'member'
*/
@property (nonatomic, strong) NSString *identity;
/**
ID
*/
@property (nonatomic, strong) NSNumber *relationship_image_id;
/**
*/
@property (nonatomic, strong) NSNumber *transfer;
/**
*/
@property (assign ,nonatomic) BOOL isSelect;
/**
*/
@property (nonatomic, copy) NSMutableArray *contact_arry;
/**
@param success <#success description#>
@param failure <#failure description#>
*/
- (void)saveManyPerson:(void (^)())success
failure:(void (^)())failure;
- (void)deleteSuccess:(void (^)())success
failure:(void (^)())failure;
/**
@param success success description
@param failure failure description
*/
+ (void)deleteManyPersonWithIDs:(NSArray*)ids success:(void (^)())success
failure:(void (^)())failure;
@end