PaymentMethodVC.h 882 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // DepositAmountVC.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2020/7/24.
  6. // Copyright © 2020 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "PaymentMethodCell.h"
  10. @protocol PaymentMethodDelegate <NSObject>
  11. -(void)callbackPaymentMethod:(NSMutableArray *) arry;
  12. @end
  13. @interface PaymentMethodVC :BaseViewController<UITableViewDataSource,UITableViewDelegate,UseDepositAmountCellDelegate>
  14. @property (nonatomic,strong) UITableView *vTableView;
  15. @property(nonatomic,weak) id<PaymentMethodDelegate> paymentMethodDelegate;
  16. @property (nonatomic,strong) NSMutableArray *receivableList;
  17. /**
  18. 拷贝的数组
  19. */
  20. @property (nonatomic,strong) NSMutableArray *arr;
  21. @property (nonatomic,assign) double goodsAmount;
  22. @property(nonatomic,assign) int editFLag;
  23. @property(nonatomic,strong) NSString *orderId;
  24. @property (nonatomic,strong) ASIDownManager *downManager;
  25. @end