YOUPAILZGameAccompanyListCell.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // YOUPAILZGameAccompanyListCell.h
  3. // VQU
  4. //
  5. // Created by CY on 2021/4/27.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class YOUPAILZGameAccompanyModel,YOUPAILZGameAccompanyListCell;
  10. @protocol LZGameAccompanyListCellDelegate <NSObject>
  11. // 同意接单
  12. - (void)youpaifagreeTakeOrderWithCell:(YOUPAILZGameAccompanyListCell *_Nullable)cell model:(YOUPAILZGameAccompanyModel *_Nullable)model;
  13. // 完成订单
  14. - (void)youpaiffinishOrderWithCell:(YOUPAILZGameAccompanyListCell *_Nullable)cell model:(YOUPAILZGameAccompanyModel *_Nullable)model;
  15. // 处理退款
  16. - (void)youpaifhandleRefundWithCell:(YOUPAILZGameAccompanyListCell *_Nullable)cell model:(YOUPAILZGameAccompanyModel *_Nullable)model;
  17. // 申请退款
  18. - (void)youpaifapplyRefundWithCell:(YOUPAILZGameAccompanyListCell *_Nullable)cell model:(YOUPAILZGameAccompanyModel *_Nullable)model;
  19. // 申诉
  20. - (void)youpaifcomplaintWithCell:(YOUPAILZGameAccompanyListCell *_Nullable)cell model:(YOUPAILZGameAccompanyModel *_Nullable)model;
  21. @end
  22. NS_ASSUME_NONNULL_BEGIN
  23. @interface YOUPAILZGameAccompanyListCell : UITableViewCell
  24. @property (nonatomic,weak) id<LZGameAccompanyListCellDelegate> delegate;
  25. - (void)youpaifreloadWithModel:(YOUPAILZGameAccompanyModel *)model;
  26. @end
  27. NS_ASSUME_NONNULL_END