YRDocuCell.h 450 B

1234567891011121314151617181920212223
  1. //
  2. // YRDocuCell.h
  3. // UU_Ent
  4. //
  5. // Created by liujl on 2019/7/4.
  6. // Copyright © 2019 UAS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YRDocuModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YRDocuCell : UITableViewCell
  12. @property(strong,nonatomic)YRDocuModel *model;
  13. @property(strong,nonatomic)NSIndexPath *indexPath;
  14. @property(copy,nonatomic)void(^didClicked)(YRDocuModel *model,NSIndexPath *indexPath);
  15. @end
  16. NS_ASSUME_NONNULL_END