1234567891011121314151617181920 |
- //
- // TrainDetailVC.h
- // jiaPei
- //
- // Created by apple on 16/1/29.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface TrainDetailVC : UIViewController
- //type为1为本地 2为其他
- @property (nonatomic, copy) NSString *type;
- @property (nonatomic, retain) NSMutableArray *datasourceArray;
- @property (nonatomic, copy)BlockTypeVo blcok;
- @end
|