activityModel.m 689 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // activityModel.m
  3. // ZhongJingLianMeng
  4. //
  5. // Created by youke on 2018/11/19.
  6. // Copyright © 2018 youke. All rights reserved.
  7. //
  8. #import "activityModel.h"
  9. @implementation activityModel
  10. + (NSDictionary *)mj_replacedKeyFromPropertyName
  11. {
  12. return @{
  13. @"news_Id" : @"id"
  14. };
  15. }
  16. MJExtensionCodingImplementation
  17. // 容错处理
  18. - (void)setValue:(id)value forUndefinedKey:(NSString *)key {}
  19. @end
  20. @implementation activity_Model
  21. + (NSDictionary *)mj_replacedKeyFromPropertyName
  22. {
  23. return @{
  24. @"news_Id" : @"id"
  25. };
  26. }
  27. MJExtensionCodingImplementation
  28. // 容错处理
  29. - (void)setValue:(id)value forUndefinedKey:(NSString *)key {}
  30. @end