Açıklama Yok

FKRefundPriceItem.h 704B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // FKRefundPriceItem.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 16/3/14.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface FKRefundPriceItem : NSObject
  10. /**
  11. * 商品总价
  12. */
  13. @property (nonatomic, strong) NSString *totalPrice;
  14. /**
  15. * 官网运费
  16. */
  17. @property (nonatomic, strong) NSString *officialPostage;
  18. /**
  19. * 国际运费,转运运费
  20. */
  21. @property (nonatomic, strong) NSString *internationalPostage;
  22. /**
  23. * 税费,关税
  24. */
  25. @property (nonatomic, strong) NSString *taxFee;
  26. /**
  27. * 优惠
  28. */
  29. @property (nonatomic, strong) NSString *derateFee;
  30. /**
  31. * 总金额
  32. */
  33. @property (nonatomic, strong) NSString *totalFee;
  34. @end