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