BGBaseModel.m 503 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // BGBaseModel.m
  3. // BuguLive
  4. //
  5. // Created by xfg on 2017/5/3.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "BGBaseModel.h"
  9. @implementation BGBaseModel
  10. + (NSDictionary *)mj_replacedKeyFromPropertyName
  11. {
  12. return @{
  13. @"errorStr" : @"error",
  14. };
  15. }
  16. - (NSString *)description
  17. {
  18. return [NSString stringWithFormat:@"%@",[self mj_keyValues]];
  19. }
  20. - (NSString *)debugDescription
  21. {
  22. return [NSString stringWithFormat:@"%@",[self mj_keyValues]];
  23. }
  24. @end