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