GoodsInformationM.m 649 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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_replacedKeyFromPropertyName {
  10. return @{
  11. @"Id": @"id",
  12. };
  13. }
  14. + (NSDictionary *)mj_objectClassInArray
  15. {
  16. return @{
  17. @"media_gallery_entries": @"MediaGalleryEntriesModel",
  18. @"options" : @"OptionsModel",
  19. };
  20. }
  21. @end
  22. @implementation MediaGalleryEntriesModel
  23. @end
  24. @implementation OptionsModel
  25. + (NSDictionary *)mj_objectClassInArray
  26. {
  27. return @{
  28. @"values": @"OptionsValuesM",
  29. };
  30. }
  31. @end
  32. @implementation OptionsValuesM
  33. @end