BGReportController.h 640 B

12345678910111213141516171819
  1. //
  2. // BGReportController.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 2017/3/20.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface BGReportController : BGBaseViewController
  10. @property (nonatomic,assign)int reportType; //1举报动态 2举报用户
  11. @property (nonatomic,copy)NSString *weibo_id; //微博id
  12. @property (nonatomic,copy)NSString *to_user_id; //被拉黑的会员ID
  13. @property (nonatomic,copy)NSString *commentID; //被举报ID
  14. @property (nonatomic,strong)UITableView *reportTableView;
  15. @end