Survey.m 325 Bytes
Newer Older
陈俊俊's avatar
陈俊俊 committed
1 2 3 4 5 6 7 8 9 10 11
//
//  Survey.m
//  XFFurit
//
//  Created by 陈俊俊 on 15/8/1.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import "Survey.h"

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

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