1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // DocumentLibraryListVC.h
- // Telemarketing
- //
- // Created by apple on 2021/4/28.
- // Copyright © 2021 刘惠萍. All rights reserved.
- //
- #import "BaseTableVC.h"
- #import "MineListMindImgView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface DocumentLibraryListVC : BaseTableVC
- @property (strong, nonatomic) NSString *activeStatus;
- @end
- @interface DocumentLibraryListCell : UITableViewCell
- @property (strong, nonatomic) UIImageView *iconImg;
- @property (strong, nonatomic) UILabel *labelName;
- @property (strong, nonatomic) UILabel *labelTime;
- @property (strong, nonatomic) UILabel *labelTitle;
- @property (strong, nonatomic) MineListMindImgView *contentImg;
- @property (strong, nonatomic) UIButton *titleBtn;
- @property (strong, nonatomic) UIButton *imgBtn;
- @property (strong, nonatomic) UIButton *shareBtn;
- @property (strong, nonatomic) ModelDocumentLibrary *model;
- #pragma mark 刷新cell
- - (void)resetCellWithModel:(ModelDocumentLibrary *)model;
- @end
- NS_ASSUME_NONNULL_END
|