UserWarehouse.m 348 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
//
//  UserWarehouse.m
//  XFFruit
//
//  Created by 陈俊俊 on 15/12/10.
//  Copyright © 2015年 Xummer. All rights reserved.
//

#import "UserWarehouse.h"

@implementation UserWarehouse
+ (NSDictionary *)specialKeysAndReplaceKeys {
    return @{ @"uwID" : [[self class] PrimaryKey], };
}

+ (NSString *)PrimaryKey {
    return @"uuid";
}
@end