1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // FKRefundPriceItem.h
- // FirstLink
- //
- // Created by ascii on 16/3/14.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKRefundPriceItem : NSObject
- /**
- * 商品总价
- */
- @property (nonatomic, strong) NSString *totalPrice;
- /**
- * 官网运费
- */
- @property (nonatomic, strong) NSString *officialPostage;
- /**
- * 国际运费,转运运费
- */
- @property (nonatomic, strong) NSString *internationalPostage;
- /**
- * 税费,关税
- */
- @property (nonatomic, strong) NSString *taxFee;
- /**
- * 优惠
- */
- @property (nonatomic, strong) NSString *derateFee;
- /**
- * 总金额
- */
- @property (nonatomic, strong) NSString *totalFee;
- @end
|