| 1234567891011121314151617181920212223 |
- //
- // YRDocuCell.h
- // UU_Ent
- //
- // Created by liujl on 2019/7/4.
- // Copyright © 2019 UAS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YRDocuModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YRDocuCell : UITableViewCell
- @property(strong,nonatomic)YRDocuModel *model;
- @property(strong,nonatomic)NSIndexPath *indexPath;
- @property(copy,nonatomic)void(^didClicked)(YRDocuModel *model,NSIndexPath *indexPath);
- @end
- NS_ASSUME_NONNULL_END
|