SearchComment.h 355 B

1234567891011121314151617
  1. //查询学员对驾校或教练的所有点评
  2. #import <UIKit/UIKit.h>
  3. @interface SearchComment : UIViewController
  4. /**直接传入参数 驾校编号或者教练身份证号码
  5. */
  6. @property(nonatomic, copy) NSString *bpjr;
  7. /**驾校1 教练2
  8. */
  9. @property(nonatomic, copy) NSString *type;
  10. @property(nonatomic, retain) NSDictionary *starDic;
  11. @end