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