| 123456789101112131415161718192021222324252627282930 |
- //
- // BGBaseModel.m
- // BuguLive
- //
- // Created by xfg on 2017/5/3.
- // Copyright © 2017年 xfg. All rights reserved.
- //
- #import "BGBaseModel.h"
- @implementation BGBaseModel
- + (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"errorStr" : @"error",
- };
- }
- - (NSString *)description
- {
- return [NSString stringWithFormat:@"%@",[self mj_keyValues]];
- }
- - (NSString *)debugDescription
- {
- return [NSString stringWithFormat:@"%@",[self mj_keyValues]];
- }
- @end
|