19 lines
252 B
Objective-C
19 lines
252 B
Objective-C
//
|
|
// KBUser.m
|
|
//
|
|
|
|
#import "KBUser.h"
|
|
#import <MJExtension/MJExtension.h>
|
|
|
|
@implementation KBUser
|
|
|
|
+ (NSDictionary *)mj_replacedKeyFromPropertyName {
|
|
return @{
|
|
@"userId": @[@"uid"],
|
|
@"gender": @[@"gender", @"sex"],
|
|
};
|
|
}
|
|
|
|
@end
|
|
|