Accounttitle.m 344 Bytes
Newer Older
陈俊俊's avatar
陈俊俊 committed
1 2 3 4 5 6 7 8 9 10 11
//
//  Accounttitle.m
//  XFFruit
//
//  Created by 陈俊俊 on 15/10/26.
//  Copyright © 2015年 Xummer. All rights reserved.
//

#import "Accounttitle.h"

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

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