YYModel

作者: 西瓜皮奥特曼 | 来源:发表于2017-07-12 16:59 被阅读26次
    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",
                 };
    }

    相关文章

      网友评论

          本文标题:YYModel

          本文链接:https://www.haomeiwen.com/subject/yzibhxtx.html