ShopDetail.m 332 Bytes
Newer Older
zhu's avatar
zhu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
//
//  ShopDetail.m
//  XFFruit
//
//  Created by mac on 15/9/7.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import "ShopDetail.h"

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

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

@end