Files
mier_ios/SweetParty/主类/Homepage/Model/SPHomepageModel.m
2025-08-11 10:43:19 +08:00

43 lines
682 B
Objective-C
Executable File

//
// SPHomepageModel.m
// SweetParty
//
// Created by bj_szd on 2022/6/2.
//
#import "SPHomepageModel.h"
@implementation SPHomepageModel
+ (NSDictionary *)mj_objectClassInArray {
return @{@"user_albums_list":@"SPHomepageAlbumModel", @"receive_gift_list":@"SPHomepageGiftModel", @"guild_info":[SPHomepageGuildinfoModel class]};
}
@end
@implementation SPHomepageAlbumModel
@end
@implementation SPHomepageGiftModel
@end
@implementation SPHomepageInRoomModel
@end
@implementation SPHomepageLevelModel
@end
@implementation SPHomepageGuildinfoModel
+ (NSDictionary *)mj_replacedKeyFromPropertyName{
return @{
@"gid" : @"id",
};
}
@end