新增搜索

This commit is contained in:
2025-12-17 20:30:01 +08:00
parent 904a6c932a
commit 1ecb7d60e5
8 changed files with 293 additions and 59 deletions

View File

@@ -0,0 +1,27 @@
//
// KBSearchThemeModel.m
// keyBoard
//
// Created by Mac on 2025/12/17.
//
#import "KBSearchThemeModel.h"
#import "KBShopThemeTagModel.h"
#import <MJExtension/MJExtension.h>
@implementation KBSearchThemeModel
+ (NSDictionary *)mj_objectClassInArray {
return @{
@"themeTag": KBShopThemeTagModel.class
};
}
+ (NSDictionary *)mj_replacedKeyFromPropertyName {
return @{
@"themeId": @"id",
};
}
@end