// // TFRechargeModel.m // TFReader // // Created by 谢腾飞 on 2020/12/14. // Copyright © 2020 xtfei_2011@126.com. All rights reserved. // #import "TFRechargeModel.h" @implementation TFRechargeModel + (NSDictionary *)modelContainerPropertyGenericClass { return @{@"list" : [TFGoodsModel class], @"user" : [TFUserInfoManager class] }; } + (NSDictionary *)modelCustomPropertyMapper { return @{ @"list" : @"items", @"goldUnit" : @"unit_tag.currencyUnit", @"silverUnit" : @"unit_tag.subUnit" }; } @end @implementation TFGoodsModel + (NSDictionary *)modelContainerPropertyGenericClass { return @{ @"tag" : [TFTagModel class], @"pal_channel" : [TFPayModel class] }; } @end @implementation TFPayModel @end