TopicesVC.h 476 B

1234567891011121314151617181920212223242526272829
  1. //表示各个子的话题。科目一到四等等等。
  2. #import <UIKit/UIKit.h>
  3. /**
  4. 每次跳转到该VC时,要设置好type
  5. 和groupID;
  6. 如果是查驾校。groupID设置为@“-1”
  7. */
  8. @interface TopicesVC : UIViewController
  9. /**
  10. */
  11. @property(nonatomic, copy)NSString* type;
  12. @property(nonatomic, copy)NSString* groupId;
  13. @property(nonatomic, copy)NSString* childID;
  14. @property(nonatomic, copy)NSString *jxbh;
  15. @property(nonatomic, copy)NSString *jxjc;
  16. @end