19 lines
384 B
Mathematica
19 lines
384 B
Mathematica
![]() |
//
|
||
|
// FirstRechargeModel.m
|
||
|
// xplan-ios
|
||
|
//
|
||
|
// Created by 冯硕 on 2021/12/23.
|
||
|
//
|
||
|
|
||
|
#import "FirstRechargeModel.h"
|
||
|
|
||
|
@implementation FirstRechargeModel
|
||
|
|
||
|
///扩展方法 按需索取 重写即可
|
||
|
///如果一个模型中 包含一个数组 数组中是另一个模型
|
||
|
+ (NSDictionary *)objectClassInArray {
|
||
|
return @{@"firstChargeRewardList": FirstRechargeRewardModel.class};
|
||
|
}
|
||
|
|
||
|
@end
|