GoodsInformationM.m 553 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // GoodsInformationM.m
  3. // westkissMob
  4. //
  5. // Created by 王猛 on 2022/9/16.
  6. //
  7. #import "GoodsInformationM.h"
  8. @implementation GoodsInformationM
  9. + (NSDictionary *)mj_objectClassInArray
  10. {
  11. return @{
  12. @"media_gallery_entries": @"MediaGalleryEntriesModel",
  13. @"options" : @"OptionsModel",
  14. };
  15. }
  16. @end
  17. @implementation MediaGalleryEntriesModel
  18. @end
  19. @implementation OptionsModel
  20. + (NSDictionary *)mj_objectClassInArray
  21. {
  22. return @{
  23. @"values": @"OptionsValuesM",
  24. };
  25. }
  26. @end
  27. @implementation OptionsValuesM
  28. @end