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.
30 lines
0 B
30 lines
0 B
1 year ago
|
//
|
||
|
// WhiteContactModel.h
|
||
|
// tongxin
|
||
|
//
|
||
|
// Created by ecell on 2021/10/19.
|
||
|
// Copyright © 2021 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import "baseModel.h"
|
||
|
|
||
|
|
||
|
@interface WhiteContactModel : baseModel
|
||
|
|
||
|
/**
|
||
|
是否选中
|
||
|
*/
|
||
|
@property (nonatomic ,assign) BOOL isSelect;
|
||
|
|
||
|
@property(nonatomic, copy)NSString *imei;
|
||
|
|
||
|
-(void)save:(NSMutableDictionary *)parameter success:(void (^)(void))success failure:(void (^)(NSError *error))failure;
|
||
|
|
||
|
-(void)query:(void (^)(NSMutableArray *arr))success failure:(void (^)(NSError *error))failure;
|
||
|
|
||
|
-(void)deleteModel:(NSArray *)modelArr success:(void (^)(void))success failure:(void (^)(NSError *error))failure;
|
||
|
@end
|
||
|
|
||
|
|