22 lines
570 B
Objective-C
22 lines
570 B
Objective-C
//
|
|
// IfishGoodsData.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/4/12.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface IfishGoodsData : NSObject
|
|
@property(nonatomic,copy)NSString*goodsId;
|
|
@property(nonatomic,copy)NSString*shopName;
|
|
@property(nonatomic,copy)NSString*goodsName;
|
|
@property(nonatomic,copy)NSString*goodsLink;
|
|
@property(nonatomic,copy)NSString*goodsPicture;
|
|
@property(nonatomic,copy)NSString*oriPrice;
|
|
@property(nonatomic,copy)NSString*prePrice;
|
|
-(instancetype)initWithDict:(NSDictionary *)dict;
|
|
|
|
@end
|