Aucune description

FKOrderSupplierItem.h 1022B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // FKOrderSupplierItem.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 16/2/22.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class FKProCountryItem;
  10. @class FKOrderBriefItem;
  11. @class LogisticsItem;
  12. @class FKSupplierDetailItem;
  13. @interface FKOrderSupplierItem : NSObject
  14. @property (nonatomic, strong) NSString *supplierID;
  15. @property (nonatomic, strong) NSString *name;
  16. @property (nonatomic, strong) NSString *type;
  17. @property (nonatomic, strong) NSString *tradeStatus;
  18. @property (nonatomic, strong) NSString *shippingType;
  19. @property (nonatomic, strong) NSString *postageRule;
  20. @property (nonatomic, strong) FKOrderBriefItem *orderItem;
  21. @property (nonatomic, strong) FKProCountryItem *countryItem;
  22. @property (nonatomic, strong) LogisticsItem *logisticsItem;
  23. @property (nonatomic, strong) FKSupplierDetailItem *supplierDetailItem;
  24. @property (nonatomic, strong) NSArray *goodArray;
  25. - (NSString *)getLogisticsString;
  26. - (NSString *)getLogisticsTimeString;
  27. @end