ViewController.h 408 B

12345678910111213141516171819202122
  1. //
  2. // ViewController.h
  3. // JSJPCoach
  4. //
  5. // Created by apple on 2017/3/10.
  6. // Copyright © 2017年 Danson. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface ViewController : UIViewController
  10. /**
  11. periodType 带教类型 0:没计时 1:实时 2:预约 3:模拟 4:断线重连
  12. */
  13. @property (nonatomic, assign) NSInteger periodType;
  14. @property (nonatomic, strong) NSDictionary *periodDic;
  15. @end