RefundHeadView.h 550 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // RefundHeadView.h
  3. // yunbaolive
  4. //
  5. // Created by ybRRR on 2020/2/20.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "RefundDetailModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. typedef void(^btnClickEvent)(NSString *btnTitle);
  12. @interface RefundHeadView : UIView
  13. {
  14. UILabel *titleLb;
  15. UILabel *timeLb;
  16. UILabel *contentLb;
  17. UIButton *agreeBtn;
  18. UIButton *refuseBtn;
  19. }
  20. @property(nonatomic, copy)btnClickEvent clickEvent;
  21. -(void)setRefundData:(RefundDetailModel *)models;
  22. @end
  23. NS_ASSUME_NONNULL_END