LogAllViewController.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // LogAllViewController.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2017/5/5.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "RefreshTableView.h"
  10. #import "LogFrame.h"
  11. #import "ReplyInfo.h"
  12. #import "SendMessageView.h"
  13. #import "LogModel.h"
  14. #import "LogCell.h"
  15. #import "ReplyFrame.h"
  16. @interface LogAllViewController : BaseViewController<UITableViewDataSource, UITableViewDelegate,RefreshTableViewDelegate,UIGestureRecognizerDelegate,XHAlbumTableViewCellDelegate,SendMessageViewDelegate>
  17. @property (strong, nonatomic) NSMutableArray *dataList;
  18. @property (strong, nonatomic) NSMutableArray *newdataList;
  19. @property(nonatomic,strong) ASIDownManager *mDownManager;
  20. @property(nonatomic,strong) RefreshTableView *vCustomTableView;
  21. @property (nonatomic, strong) NSIndexPath *selectedIndexPath;
  22. @property (strong, nonatomic) LogFrame *logFrame;
  23. @property (strong, nonatomic) SendMessageView *commentView;
  24. @property (assign, nonatomic) NSInteger tag;
  25. @property (strong, nonatomic) ReplyInfo *replyInfo;
  26. @property(nonatomic,strong) LogModel *logModel;
  27. @property(nonatomic,strong) NSString *recordStatus;
  28. @property(nonatomic,strong) NSString *startDate;
  29. @property(nonatomic,strong) NSString *endDate;
  30. @property(nonatomic,strong) UINavigationController *cNav;
  31. @property(nonatomic,strong) NSString *createUserIds;
  32. @property (nonatomic, strong) UITableViewCell *prototypeCell;
  33. @property (assign, nonatomic) NSInteger currentIndex;
  34. -(void)reloadData;
  35. -(void)refresh;
  36. -(void) closeKeyboard;
  37. @end