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

#import "Warehouse.h"

@implementation Warehouse
n22's avatar
n22 committed
12 13 14
+ (NSDictionary *)specialKeysAndReplaceKeys {
    return @{ @"wID" : [[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