19 lines
264 B
Objective-C
19 lines
264 B
Objective-C
//
|
|
// KBCharacter.m
|
|
//
|
|
|
|
#import "KBCharacter.h"
|
|
#import <MJExtension/MJExtension.h>
|
|
|
|
@implementation KBCharacter
|
|
|
|
+ (NSDictionary *)mj_replacedKeyFromPropertyName {
|
|
// 后端字段 id -> characterId
|
|
return @{
|
|
@"characterId": @"id"
|
|
};
|
|
}
|
|
|
|
@end
|
|
|