KWMShopCartModel.h 837 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
@property (nonatomic) NSInteger quantity;
lee committed
19 20
@property (nullable, nonatomic, strong) NSDecimalNumber *price;
@property (nullable, nonatomic, strong) NSDecimalNumber *line_price;
houweibin committed
21
@property (nullable, nonatomic, retain) NSDictionary *shopCartDict;
lee committed
22 23 24

- (NSString *_Nullable) totalPrice;

houweibin committed
25
@end