KWMShopCartModel.h 701 Bytes
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//
//  KWMShopCartModel.h
//  iCemarose
//
//  Created by 陈荣科 on 16/9/22.
//  Copyright © 2016年 kollway. All rights reserved.
//

#import "KWMBaseModel.h"

@interface KWMShopCartModel : KWMBaseModel
@property (nullable, nonatomic, copy) NSString *identifier;
@property (nullable, nonatomic, copy) NSString *imageStr;
@property (nullable, nonatomic, copy) NSString *brand;
@property (nullable, nonatomic, copy) NSString *name;
@property (nullable, nonatomic, copy) NSString *size;
lee committed
17
@property (nullable, nonatomic, strong) NSNumber *product_id;
houweibin committed
18 19 20 21
@property (nonatomic) NSInteger quantity;
@property (nonatomic) float price;
@property (nullable, nonatomic, retain) NSDictionary *shopCartDict;
@end