InfoModel.m 664 B

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