1234567891011121314151617181920 |
- //
- // LogisticsItem.h
- // FirstLink
- //
- // Created by ascii on 15/6/13.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import "Motis.h"
- @interface LogisticsItem : NSObject
- @property (nonatomic, strong) NSString *itemID;
- @property (nonatomic, strong) NSString *desc;
- @property (nonatomic, strong) NSString *waybillID;
- @property (nonatomic, strong) NSString *createTime;
- @property (nonatomic, strong) NSString *updateTime;
- @end
|