-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_General.m
45 lines (31 loc) · 1 KB
/
_General.m
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
38
39
40
41
42
43
44
// DO NOT EDIT. This file is machine-generated and constantly overwritten.
// Make changes to General.m instead.
#import "_General.h"
const struct GeneralAttributes GeneralAttributes = {
.created_at = @"created_at",
.updated_at = @"updated_at",
};
@implementation GeneralID
@end
@implementation _General
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_ {
NSParameterAssert(moc_);
return [NSEntityDescription insertNewObjectForEntityForName:@"General" inManagedObjectContext:moc_];
}
+ (NSString*)entityName {
return @"General";
}
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_ {
NSParameterAssert(moc_);
return [NSEntityDescription entityForName:@"General" inManagedObjectContext:moc_];
}
- (GeneralID*)objectID {
return (GeneralID*)[super objectID];
}
+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
return keyPaths;
}
@dynamic created_at;
@dynamic updated_at;
@end