1234567891011121314151617181920212223 |
- //
- // YMAccountBalanceModel.m
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/28.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "YMAccountBalanceModel.h"
- @implementation YMAccountBalanceModel
- + (NSDictionary *)modelContainerPropertyGenericClass {
- return @{
- @"list": [YMAccountBalanceRechargeItemModel class],
- };
- }
- @end
- @implementation YMAccountBalanceRechargeItemModel
- + (NSDictionary *)modelCustomPropertyMapper {
- return @{@"rechargeItem_id":@"id",};
- }
- @end
|