YOUPAILZVideoDiscountModel.m 510 B

123456789101112131415161718192021222324252627
  1. //
  2. // YOUPAILZVideoDiscountModel.m
  3. // VQU
  4. //
  5. // Created by CY on 2021/7/19.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import "YOUPAILZVideoDiscountModel.h"
  9. @implementation YOUPAILZVideoDiscountModel
  10. + (NSDictionary*)mj_objectClassInArray{
  11. return @{
  12. @"youpaiptime" : [YOUPAILZVideoDiscountItemModel class]
  13. };
  14. }
  15. + (NSDictionary *)mj_replacedKeyFromPropertyName
  16. {
  17. return @{
  18. @"youpaipprice":@"price",
  19. @"youpaiptime":@"time",
  20. };
  21. }
  22. @end