45 lines
652 B
Objective-C
45 lines
652 B
Objective-C
//
|
|
// GiftReceiveInfoModel.m
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/11/16.
|
|
//
|
|
|
|
#import "GiftReceiveInfoModel.h"
|
|
#import "NSObject+MJExtension.h"
|
|
|
|
@implementation GiftReceiveUserInfoModel
|
|
|
|
@end
|
|
|
|
@implementation GiftLuckyUserInfo
|
|
|
|
|
|
@end
|
|
|
|
@implementation GiftListsInfo
|
|
|
|
|
|
@end
|
|
|
|
@implementation GiftLuckyBagGiftsInfo
|
|
|
|
+ (NSDictionary *)objectClassInArray {
|
|
return @{@"giftList":GiftListsInfo.class
|
|
};
|
|
}
|
|
|
|
|
|
@end
|
|
|
|
@implementation GiftReceiveInfoModel
|
|
|
|
+ (NSDictionary *)objectClassInArray {
|
|
return @{@"targetUsers":GiftReceiveUserInfoModel.class,
|
|
@"displayGift":GiftInfoModel.class,
|
|
@"luckyBagGifts":GiftLuckyBagGiftsInfo.class
|
|
};
|
|
}
|
|
|
|
@end
|