AccountRechargeModel.m 840 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //
  2. // AccountRechargeModel.m
  3. // BuguLive
  4. //
  5. // Created by hym on 2016/10/25.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import "AccountRechargeModel.h"
  9. @implementation PayTypeModel
  10. + (NSDictionary *)mj_replacedKeyFromPropertyName{
  11. return @{
  12. @"payWayID" : @"id",
  13. @"descrStr": @"description",
  14. };
  15. }
  16. + (NSDictionary *)mj_objectClassInArray{
  17. return @{
  18. @"rule_list" : @"PayMoneyModel",
  19. };
  20. }
  21. @end
  22. @implementation PayMoneyModel
  23. + (NSDictionary *)mj_replacedKeyFromPropertyName{
  24. return @{
  25. @"payID" : @"id",
  26. };
  27. }
  28. @end
  29. @implementation AccountRechargeModel
  30. + (NSDictionary *)mj_objectClassInArray{
  31. return @{
  32. @"pay_list" : @"PayTypeModel",
  33. @"rule_list" : @"PayMoneyModel",
  34. };
  35. }
  36. @end