63 lines
980 B
Objective-C
63 lines
980 B
Objective-C
//
|
|
// QXGiftActivityModel.m
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/8/26.
|
|
//
|
|
|
|
#import "QXGiftActivityModel.h"
|
|
|
|
@implementation QXGiftActivityModel
|
|
+(NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass{
|
|
return @{
|
|
@"xlh_data" : @"QXXLHModel",
|
|
@"gift_list":@"QXDrawGiftModel"
|
|
};
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
@implementation QXXLHModel
|
|
|
|
|
|
|
|
@end
|
|
|
|
@implementation QXDrawGiftModel
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
@implementation QXDrawGiftResultModel
|
|
+(NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass{
|
|
return @{
|
|
@"reslut_list":@"QXDrawGiftModel"
|
|
};
|
|
}
|
|
|
|
|
|
@end
|
|
|
|
@implementation QXActivityRecordModel
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
@implementation QXActivityXLHModel
|
|
+(NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass{
|
|
return @{
|
|
@"give_homeowner_gift" : @"QXDrawGiftModel",
|
|
@"locking_gift":@"QXDrawGiftModel",
|
|
@"xlh_user":@"QXUserModel",
|
|
@"homeowner_user":@"QXUserModel",
|
|
@"gift_list":@"QXDrawGiftModel"
|
|
};
|
|
}
|
|
|
|
@end
|