YOUPAIHRPersonnelManagementCell.h 533 B

123456789101112131415161718
  1. //
  2. // YOUPAIHRPersonnelManagementCell.h
  3. // VQU
  4. //
  5. // Created by xiaohaoran on 2021/11/9.
  6. // Copyright © 2021 MS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAIHRPersonnelManagementModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. typedef void (^DidClickBlock)(YOUPAIHRPersonnelManagementModel *model);
  12. @interface YOUPAIHRPersonnelManagementCell : UITableViewCell
  13. @property(nonatomic,copy)DidClickBlock youpaipdidClickBlock;
  14. @property(nonatomic,strong)YOUPAIHRPersonnelManagementModel *youpaipmodel;
  15. @end
  16. NS_ASSUME_NONNULL_END