// // FKRefundPriceItem.h // FirstLink // // Created by ascii on 16/3/14. // Copyright © 2016年 FirstLink. All rights reserved. // #import @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