// // YOUPAILZGameAccompanyListCell.h // VQU // // Created by CY on 2021/4/27. // Copyright © 2021 leo. All rights reserved. // #import @class YOUPAILZGameAccompanyModel,YOUPAILZGameAccompanyListCell; @protocol LZGameAccompanyListCellDelegate // 同意接单 - (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 delegate; - (void)youpaifreloadWithModel:(YOUPAILZGameAccompanyModel *)model; @end NS_ASSUME_NONNULL_END