1234567891011121314151617181920212223242526 |
- //
- // YMPointsAndEarningsListModel.m
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/3.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "YMPointsAndEarningsListModel.h"
- @implementation YMPointsAndEarningsListModel
- + (NSDictionary *)modelContainerPropertyGenericClass {
- return @{
- @"list": [YMPointsAndEarningsItemModel class],
- };
- }
- @end
- @implementation YMPointsAndEarningsItemModel
- + (NSDictionary *)modelCustomPropertyMapper {
- return @{
- @"points_and_earnings_id":@"id",
- };
- }
- @end
|