1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//
// ICRAnnouncement.m
// XFFruit
//
// Created by Lili Wang on 15/4/13.
// Copyright (c) 2015年 Xummer. All rights reserved.
//
#import "ICRAnnouncement.h"
#import "ICRAttachment.h"
@implementation ICRAnnouncement
+ (NSDictionary *)specialKeysAndReplaceKeys {
return @{ @"aID" : [[self class] PrimaryKey], };
}
+ (NSString *)PrimaryKey {
return @"uuid";
}
//#pragma mark - Setter
- (void)setAttachments:(NSArray *)attachments {
// if ([_attachments isEqualToArray:attachments]) {
// return;
// }
// _attachments = attachments;
//
// for (NSDictionary *dict in attachments) {
// ICRAttachment *attach = [ICRAttachment DBObject];
// [attach praseFromJsonDict:dict];
//
// [self.arrSubModels addObject:attach];
// }
}
@end