FeeAmountVC.h 848 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 "FeeAmountCell.h"
  10. @protocol FeeAmountDelegate <NSObject>
  11. -(void)callbackDepositAmount:(NSMutableArray *) arry;
  12. @end
  13. @interface FeeAmountVC :BaseViewController<UITableViewDataSource,UITableViewDelegate,FeeAmountCellDelegate>
  14. @property (nonatomic,strong) UITableView *vTableView;
  15. @property(nonatomic,weak) id<FeeAmountDelegate> feeAmountDelegate;
  16. @property (nonatomic,strong) NSMutableArray *feeList;
  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