123456789101112131415161718192021222324252627282930313233343536 |
- //
- // YOUPAILZGameAccompanyListCell.h
- // VQU
- //
- // Created by CY on 2021/4/27.
- // Copyright © 2021 leo. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class YOUPAILZGameAccompanyModel,YOUPAILZGameAccompanyListCell;
- @protocol LZGameAccompanyListCellDelegate <NSObject>
- // 同意接单
- - (void)youpaifagreeTakeOrderWithCell:(YOUPAILZGameAccompanyListCell *_Nullable)cell model:(YOUPAILZGameAccompanyModel *_Nullable)model;
- // 完成订单
- - (void)youpaiffinishOrderWithCell:(YOUPAILZGameAccompanyListCell *_Nullable)cell model:(YOUPAILZGameAccompanyModel *_Nullable)model;
- // 处理退款
- - (void)youpaifhandleRefundWithCell:(YOUPAILZGameAccompanyListCell *_Nullable)cell model:(YOUPAILZGameAccompanyModel *_Nullable)model;
- // 申请退款
- - (void)youpaifapplyRefundWithCell:(YOUPAILZGameAccompanyListCell *_Nullable)cell model:(YOUPAILZGameAccompanyModel *_Nullable)model;
- // 申诉
- - (void)youpaifcomplaintWithCell:(YOUPAILZGameAccompanyListCell *_Nullable)cell model:(YOUPAILZGameAccompanyModel *_Nullable)model;
- @end
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAILZGameAccompanyListCell : UITableViewCell
- @property (nonatomic,weak) id<LZGameAccompanyListCellDelegate> delegate;
- - (void)youpaifreloadWithModel:(YOUPAILZGameAccompanyModel *)model;
- @end
- NS_ASSUME_NONNULL_END
|