No Description

FKSupplierDetailItem.h 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. //
  2. // FKSubClassItem.h
  3. // FirstLink
  4. //
  5. // Created by jack on 15/9/9.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface FKSupplierDetailItem : NSObject
  10. @property (nonatomic, strong) NSString *itemID;
  11. @property (nonatomic, strong) NSString *type;
  12. @property (nonatomic, strong) NSString *grouponID;
  13. @property (nonatomic, strong) NSString *tradeStatus;
  14. @property (nonatomic, strong) NSString *refundStatus;
  15. @property (nonatomic, strong) NSString *createTime;
  16. @property (nonatomic, strong) NSString *taxChannelType;
  17. @property (nonatomic, strong) NSString *waybillID;
  18. /**
  19. * 商品总价
  20. */
  21. @property (nonatomic, strong) NSString *price;
  22. /**
  23. * 国际运费,转运运费
  24. */
  25. @property (nonatomic, strong) NSString *internationalPostage;
  26. /**
  27. * 官网运费
  28. */
  29. @property (nonatomic, strong) NSString *officialPostage;
  30. /**
  31. * 税费,关税
  32. */
  33. @property (nonatomic, strong) NSString *taxFee;
  34. /**
  35. * 服务费
  36. */
  37. @property (nonatomic, strong) NSString *serviceFee;
  38. /**
  39. * 优惠
  40. */
  41. @property (nonatomic, strong) NSString *derateFee;
  42. /**
  43. * 总金额
  44. */
  45. @property (nonatomic, strong) NSString *totalFee;
  46. /**
  47. * 商品总价
  48. */
  49. @property (nonatomic, strong) NSString *totalPrice;
  50. /**
  51. * 国内邮费
  52. */
  53. @property (nonatomic, strong) NSString *postage;
  54. @end