DocumentLibraryListVC.h 976 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // DocumentLibraryListVC.h
  3. // Telemarketing
  4. //
  5. // Created by apple on 2021/4/28.
  6. // Copyright © 2021 刘惠萍. All rights reserved.
  7. //
  8. #import "BaseTableVC.h"
  9. #import "MineListMindImgView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface DocumentLibraryListVC : BaseTableVC
  12. @property (strong, nonatomic) NSString *activeStatus;
  13. @end
  14. @interface DocumentLibraryListCell : UITableViewCell
  15. @property (strong, nonatomic) UIImageView *iconImg;
  16. @property (strong, nonatomic) UILabel *labelName;
  17. @property (strong, nonatomic) UILabel *labelTime;
  18. @property (strong, nonatomic) UILabel *labelTitle;
  19. @property (strong, nonatomic) MineListMindImgView *contentImg;
  20. @property (strong, nonatomic) UIButton *titleBtn;
  21. @property (strong, nonatomic) UIButton *imgBtn;
  22. @property (strong, nonatomic) UIButton *shareBtn;
  23. @property (strong, nonatomic) ModelDocumentLibrary *model;
  24. #pragma mark 刷新cell
  25. - (void)resetCellWithModel:(ModelDocumentLibrary *)model;
  26. @end
  27. NS_ASSUME_NONNULL_END