TrainDetailVC.h 505 B

12345678910111213141516171819202122
  1. //
  2. // TrainDetailVC.h
  3. // jiaPei
  4. //
  5. // Created by apple on 16/1/29.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface TrainDetailVC : UIViewController
  10. //type为1为本地 2为其他
  11. @property (nonatomic, copy) NSString *type;
  12. @property (nonatomic, retain) NSArray *datasourceArray;
  13. @property (nonatomic, copy)BlockTypeVo blcok;
  14. @property (nonatomic, readwrite, assign) NSInteger RATIONKS;
  15. @property (nonatomic, readwrite, copy) NSString *RATIONKSMC;
  16. @end