KWMineHomeOrderListCell.h 459 B

1234567891011121314151617181920212223
  1. //
  2. // KWMineHomeOrderListCell.h
  3. // westkissMob
  4. //
  5. // Created by iOS on 2022/9/15.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "KWMineHomeOrderModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface KWMineHomeOrderListCell : UITableViewCell
  11. @property (nonatomic, copy) void(^viewOrderCall)(NSInteger type, KWMineHomeOrderModel *model) ;
  12. //@property (nonatomic, copy) btnClickBlock viewOrderCall;
  13. - (void)setData:(KWMineHomeOrderModel *)model;
  14. @end
  15. NS_ASSUME_NONNULL_END