ShopOrderListModel * model = [ShopOrderListModel modelWithJSON:responseObject];
ShopOrderListModel.h
@interface ShopOrderListTModel : NSObject
@property (strong , nonatomic) NSString * tyres_order_id;
@property (strong , nonatomic) NSString * tyres_order_number;
@end
@interface ShopOrderListModel : NSObject
@property (strong , nonatomic) NSArray * t;
@end
ShopOrderListModel.m
@implementation ShopOrderListTModel
@end
@implementation ShopOrderListModel
+ (NSDictionary *)modelContainerPropertyGenericClass
{
return @{
@"t":@"ShopOrderListTModel",
};
}