YMPointsAndEarningsListModel.m 528 B

1234567891011121314151617181920212223242526
  1. //
  2. // YMPointsAndEarningsListModel.m
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/3/3.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "YMPointsAndEarningsListModel.h"
  9. @implementation YMPointsAndEarningsListModel
  10. + (NSDictionary *)modelContainerPropertyGenericClass {
  11. return @{
  12. @"list": [YMPointsAndEarningsItemModel class],
  13. };
  14. }
  15. @end
  16. @implementation YMPointsAndEarningsItemModel
  17. + (NSDictionary *)modelCustomPropertyMapper {
  18. return @{
  19. @"points_and_earnings_id":@"id",
  20. };
  21. }
  22. @end