1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- //
- // FKSubClassItem.h
- // FirstLink
- //
- // Created by jack on 15/9/9.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKSupplierDetailItem : NSObject
- @property (nonatomic, strong) NSString *itemID;
- @property (nonatomic, strong) NSString *type;
- @property (nonatomic, strong) NSString *grouponID;
- @property (nonatomic, strong) NSString *tradeStatus;
- @property (nonatomic, strong) NSString *refundStatus;
- @property (nonatomic, strong) NSString *createTime;
- @property (nonatomic, strong) NSString *taxChannelType;
- @property (nonatomic, strong) NSString *waybillID;
- /**
- * 商品总价
- */
- @property (nonatomic, strong) NSString *price;
- /**
- * 国际运费,转运运费
- */
- @property (nonatomic, strong) NSString *internationalPostage;
- /**
- * 官网运费
- */
- @property (nonatomic, strong) NSString *officialPostage;
- /**
- * 税费,关税
- */
- @property (nonatomic, strong) NSString *taxFee;
- /**
- * 服务费
- */
- @property (nonatomic, strong) NSString *serviceFee;
- /**
- * 优惠
- */
- @property (nonatomic, strong) NSString *derateFee;
- /**
- * 总金额
- */
- @property (nonatomic, strong) NSString *totalFee;
- /**
- * 商品总价
- */
- @property (nonatomic, strong) NSString *totalPrice;
- /**
- * 国内邮费
- */
- @property (nonatomic, strong) NSString *postage;
- @end
|