#import "MJExtension.h"
@interface StoreModel : NSObject
//name
@property(nonatomic,strong)NSString *name;
//id
@property(nonatomic,strong)NSString *iname;
@end
#import "StoreModel.h"
@implementation StoreModel
+ (NSDictionary *)mj_replacedKeyFromPropertyName{
/* 返回的字典颤枪,key為模型屬性名姑子,value為轉(zhuǎn)化的字典的多級key */
return @{
@"iname" : @"id"
};
}
@end