43 lines
682 B
Mathematica
43 lines
682 B
Mathematica
|
|
//
|
||
|
|
// 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
|
||
|
|
|