SFeeRecordV.h 1.1 KB

12345678910111213141516171819202122232425
  1. //
  2. // SFeeRecordV.h
  3. // BuguLive
  4. //
  5. // Created by 丁凯 on 2017/8/29.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "BGBaseView.h"
  9. @interface SFeeRecordV : BGBaseView<UITableViewDelegate,UITableViewDataSource>
  10. @property ( nonatomic,assign) int myFeeType; //直播收费类型 0按时,1按场
  11. @property ( nonatomic,assign) int myRecordType; //0付费记录 1收费记录
  12. @property ( nonatomic,assign) int page; //页数
  13. @property ( nonatomic,assign) int has_next; //是否还有下一页
  14. @property ( nonatomic,strong) UITableView *listTableView; //tableView
  15. @property ( nonatomic,strong) NSMutableArray *dataArray; //数据源
  16. @property ( nonatomic, strong)BGNoContentView *noContentView; //没有数据时页面的图片提示
  17. @property ( nonatomic,copy) void (^feeRecordBlock)(NSString *userId);
  18. - (instancetype)initWithFrame:(CGRect)frame andfeeType:(int)feeType andRecordType:(int)recordType;
  19. @end