123456789101112131415161718192021222324252627282930313233343536 |
- //
- // FKOrderSupplierItem.h
- // FirstLink
- //
- // Created by ascii on 16/2/22.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class FKProCountryItem;
- @class FKOrderBriefItem;
- @class LogisticsItem;
- @class FKSupplierDetailItem;
- @interface FKOrderSupplierItem : NSObject
- @property (nonatomic, strong) NSString *supplierID;
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *type;
- @property (nonatomic, strong) NSString *tradeStatus;
- @property (nonatomic, strong) NSString *shippingType;
- @property (nonatomic, strong) NSString *postageRule;
- @property (nonatomic, strong) FKOrderBriefItem *orderItem;
- @property (nonatomic, strong) FKProCountryItem *countryItem;
- @property (nonatomic, strong) LogisticsItem *logisticsItem;
- @property (nonatomic, strong) FKSupplierDetailItem *supplierDetailItem;
- @property (nonatomic, strong) NSArray *goodArray;
- - (NSString *)getLogisticsString;
- - (NSString *)getLogisticsTimeString;
- @end
|