2025-12-03 18:19:51 +08:00
|
|
|
|
//
|
|
|
|
|
|
// KBCharacter.m
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
#import "KBCharacter.h"
|
|
|
|
|
|
#import <MJExtension/MJExtension.h>
|
|
|
|
|
|
|
|
|
|
|
|
@implementation KBCharacter
|
|
|
|
|
|
|
|
|
|
|
|
+ (NSDictionary *)mj_replacedKeyFromPropertyName {
|
2025-12-03 18:49:18 +08:00
|
|
|
|
// 后端字段映射到本地属性
|
2025-12-03 18:19:51 +08:00
|
|
|
|
return @{
|
2025-12-03 18:49:18 +08:00
|
|
|
|
// id -> characterId
|
|
|
|
|
|
@"characterId": @"id",
|
|
|
|
|
|
// 名称字段:优先 characterName,兼容部分接口可能返回 title
|
|
|
|
|
|
@"characterName": @[@"characterName", @"title"],
|
2025-12-03 18:19:51 +08:00
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@end
|