@property (nonatomic, strong) NSString *name;//
+(NSDictionary *)mj_replacedKeyFromPropertyName{
return @{
@"name" : @"NAME"//前边的是你想用的key,后边的是返回的key
};
}
@property (nonatomic, strong) NSArray *infoList;//此处为模型数组
+(NSDictionary *)mj_objectClassInArray{
return @{@"infoList":[ExampInfoModel class]};
}