User.m 314 Bytes
Newer Older
n22's avatar
n22 committed
1 2 3 4 5 6 7 8 9 10 11
//
//  User.m
//  XFFruit
//
//  Created by n22 on 15/8/13.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import "User.h"

@implementation User
n22's avatar
n22 committed
12 13 14
+ (NSDictionary *)specialKeysAndReplaceKeys {
    return @{ @"uID" : [[self class] PrimaryKey], };
}
n22's avatar
n22 committed
15

n22's avatar
n22 committed
16 17 18
+ (NSString *)PrimaryKey {
    return @"uuid";
}
n22's avatar
n22 committed
19
@end