YOUPAILCFirstRechargeModel.m 495 B

1234567891011121314151617181920212223242526
  1. //
  2. // YOUPAILCFirstRechargeModel.m
  3. // VQU
  4. //
  5. // Created by 肖浩然的mac on 2021/9/10.
  6. // Copyright © 2021 MS. All rights reserved.
  7. //
  8. #import "YOUPAILCFirstRechargeModel.h"
  9. @implementation YOUPAILCFirstRechargeModel
  10. +(NSDictionary *)mj_objectClassInArray{
  11. return @{
  12. @"youpaiplist":[YOUPAILCBannerModel class]
  13. };
  14. }
  15. + (NSDictionary *)mj_replacedKeyFromPropertyName
  16. {
  17. return @{
  18. @"youpaipis_open":@"is_open",
  19. @"youpaiplist":@"list",
  20. };
  21. }
  22. @end