123456789101112131415161718 |
- //
- // FKPackageLogisticsItem.h
- // FirstLink
- //
- // Created by ascii on 16/2/24.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKPackageLogisticsItem : NSObject
- @property (nonatomic, strong) NSArray *goodArray;
- @property (nonatomic, strong) NSArray *logisticsArray;
- @property (nonatomic, strong) NSString *selected;
- @end
|